Source code for wpilib.interfaces.namedsendable

# validated: 2015-12-22 DS 6d854af shared/java/edu/wpi/first/wpilibj/NamedSendable.java
from ..sendable import Sendable

__all__ = ["NamedSendable"]

[docs]class NamedSendable(Sendable): """The interface for sendable objects that gives the sendable a default name in the Smart Dashboard. """
[docs] def getName(self): """ :returns: The name of the subtable of SmartDashboard that the :class:`.Sendable` object will use """ raise NotImplementedError