Java 类edu.wpi.first.wpilibj.NamedSendable 实例源码

项目:2017SteamBot2    文件:CustomDashboard.java   
public static void putData(NamedSendable value) {
    SmartDashboard.putData(value);
}
项目:snobot-2017    文件:SmartDashboard.java   
/**
 * Maps the specified key (where the key is the name of the {@link NamedSendable}
 * SmartDashboardNamedData to the specified value in this table. The value can be retrieved by
 * calling the get method with a key that is equal to the original key.
 *
 * @param value the value
 * @throws IllegalArgumentException If key is null
 */
public static void putData(NamedSendable value) {
  putData(value.getName(), value);
}
项目:wpilibj    文件:SmartDashboard.java   
/**
 * Maps the specified key (where the key is the name of the {@link SmartDashboardNamedData}
 * to the specified value in this table.
 * The value can be retrieved by calling the get method with a key that is equal to the original key.
 * @param value the value
 * @throws IllegalArgumentException if key is null
 */
public static void putData(NamedSendable value) {
    putData(value.getName(), value);
}
项目:2013_drivebase_proto    文件:SmartDashboard.java   
/**
 * Maps the specified key (where the key is the name of the {@link SmartDashboardNamedData}
 * to the specified value in this table.
 * The value can be retrieved by calling the get method with a key that is equal to the original key.
 * @param value the value
 * @throws IllegalArgumentException if key is null
 */
public static void putData(NamedSendable value) {
    putData(value.getName(), value);
}
项目:2014_software    文件:SmartDashboard.java   
/**
 * Maps the specified key (where the key is the name of the {@link SmartDashboardNamedData}
 * to the specified value in this table.
 * The value can be retrieved by calling the get method with a key that is equal to the original key.
 * @param value the value
 * @throws IllegalArgumentException if key is null
 */
public static void putData(NamedSendable value) {
    putData(value.getName(), value);
}
项目:wpilib-java    文件:SmartDashboard.java   
/**
 * Maps the specified key (where the key is the name of the {@link SmartDashboardNamedData}
 * to the specified value in this table.
 * The value can be retrieved by calling the get method with a key that is equal to the original key.
 * @param value the value
 * @throws IllegalArgumentException if key is null
 */
public static void putData(NamedSendable value) {
    putData(value.getName(), value);
}
项目:2013_robot_software    文件:SmartDashboard.java   
/**
 * Maps the specified key (where the key is the name of the {@link SmartDashboardNamedData}
 * to the specified value in this table.
 * The value can be retrieved by calling the get method with a key that is equal to the original key.
 * @param value the value
 * @throws IllegalArgumentException if key is null
 */
public static void putData(NamedSendable value) {
    putData(value.getName(), value);
}