Package edu.wpi.first.wpilibj
Interface NamedSendable
-
- All Superinterfaces:
Sendable
@Deprecated public interface NamedSendable extends Sendable
Deprecated.Use Sendable directly insteadThe interface for sendable objects that gives the sendable a default name in the Smart Dashboard.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description StringgetName()Deprecated.The name of the subtable.default StringgetSubsystem()Deprecated.Gets the subsystem name of thisSendableobject.default voidinitSendable(SendableBuilder builder)Deprecated.Initializes thisSendableobject.default voidsetName(String name)Deprecated.Sets the name of thisSendableobject.default voidsetSubsystem(String subsystem)Deprecated.Sets the subsystem name of thisSendableobject.
-
-
-
Method Detail
-
getName
String getName()
Deprecated.The name of the subtable.
-
setName
default void setName(String name)
Deprecated.Description copied from interface:SendableSets the name of thisSendableobject.
-
getSubsystem
default String getSubsystem()
Deprecated.Description copied from interface:SendableGets the subsystem name of thisSendableobject.- Specified by:
getSubsystemin interfaceSendable- Returns:
- Subsystem name
-
setSubsystem
default void setSubsystem(String subsystem)
Deprecated.Description copied from interface:SendableSets the subsystem name of thisSendableobject.- Specified by:
setSubsystemin interfaceSendable- Parameters:
subsystem- subsystem name
-
initSendable
default void initSendable(SendableBuilder builder)
Deprecated.Description copied from interface:SendableInitializes thisSendableobject.- Specified by:
initSendablein interfaceSendable- Parameters:
builder- sendable builder
-
-