Files
allwpilib/wpilibj/src/main/java/edu/wpi/first/wpilibj/NamedSendable.java
2013-12-15 18:30:16 -05:00

15 lines
334 B
Java

package edu.wpi.first.wpilibj;
/**
* The interface for sendable objects that gives the sendable a default name in the Smart Dashboard
*
*/
public interface NamedSendable extends Sendable {
/**
* @return the name of the subtable of SmartDashboard that the Sendable object will use
*/
public String getName();
}