Uses of Interface
net.jinx.action.input.robot.Control

Packages that use Control
net.jinx.action.input.robot   
 

Uses of Control in net.jinx.action.input.robot
 

Classes in net.jinx.action.input.robot that implement Control
 class AbstractControl
          Abstract implementation of Control with most parts implemented for you.
 class AxisControl
          AxisControl is an almost useless extension of AbstractControl.
 class ButtonControl
          ButtonControl is an AbstractControl extension that converts it's input values to a boolean state.
 class SliderControl
          SliderControl is an AbstractControl extension that expects input values from zero to one, much like a throttle.
 class ToggleButtonControl
          ToggleButtonControl is an extension of ButtonControl that when pressed flip-flops back and forth from on to off and back again.
 

Methods in net.jinx.action.input.robot that return Control
 Control RobotSystem.getControl(java.lang.String name)
           
protected  Control Robot.getControl(java.lang.String name)
           
 Control[] RobotSystem.getControls()
           
 

Constructors in net.jinx.action.input.robot with parameters of type Control
LoopbackReadout(Control control)