001/*----------------------------------------------------------------------------*/ 002/* Copyright (c) FIRST 2016-2017. All Rights Reserved. */ 003/* Open Source Software - may be modified and shared by FRC teams. The code */ 004/* must be accompanied by the FIRST BSD license file in the root directory of */ 005/* the project. */ 006/*----------------------------------------------------------------------------*/ 007 008package edu.wpi.first.wpilibj; 009 010 011/** 012 * The interface for sendable objects that gives the sendable a default name in the Smart 013 * Dashboard. 014 */ 015public interface NamedSendable extends Sendable { 016 017 /** 018 * The name of the subtable. 019 * 020 * @return the name of the subtable of SmartDashboard that the Sendable object will use. 021 */ 022 String getName(); 023}