001    package edu.wpi.first.wpilibj;
002    
003    
004    /**
005     * The interface for sendable objects that gives the sendable a default name in the Smart Dashboard
006     * 
007     */
008    public interface NamedSendable extends Sendable{
009    
010        /**
011         * @return the name of the subtable of SmartDashboard that the Sendable object will use
012         */
013        public String getName();
014    }