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 String
getName()
Deprecated.The name of the subtable.default String
getSubsystem()
Deprecated.Gets the subsystem name of thisSendable
object.default void
initSendable(SendableBuilder builder)
Deprecated.Initializes thisSendable
object.default void
setName(String name)
Deprecated.Sets the name of thisSendable
object.default void
setSubsystem(String subsystem)
Deprecated.Sets the subsystem name of thisSendable
object.
-
-
-
Method Detail
-
getName
String getName()
Deprecated.The name of the subtable.
-
setName
default void setName(String name)
Deprecated.Description copied from interface:Sendable
Sets the name of thisSendable
object.
-
getSubsystem
default String getSubsystem()
Deprecated.Description copied from interface:Sendable
Gets the subsystem name of thisSendable
object.- Specified by:
getSubsystem
in interfaceSendable
- Returns:
- Subsystem name
-
setSubsystem
default void setSubsystem(String subsystem)
Deprecated.Description copied from interface:Sendable
Sets the subsystem name of thisSendable
object.- Specified by:
setSubsystem
in interfaceSendable
- Parameters:
subsystem
- subsystem name
-
initSendable
default void initSendable(SendableBuilder builder)
Deprecated.Description copied from interface:Sendable
Initializes thisSendable
object.- Specified by:
initSendable
in interfaceSendable
- Parameters:
builder
- sendable builder
-
-