Uses of Interface
jaron.components.SignalListener

Packages that use SignalListener
jaron.components Provides the classes that are the basis for most of the UAV Playground components. 
jaron.flightgear Provides the classes that are used to communicate with the FlightGear Flight Simulator. 
jaron.gui Provides the classes that support a GUI independent implementation of visual components. 
jaron.pde Provides GUI components for the Processing Development Environment (PDE). 
 

Uses of SignalListener in jaron.components
 

Classes in jaron.components that implement SignalListener
 class Signal
          The Signal class contains a single double value (signal) and implements an EventListener mechanism that allows its registered listeners to be informed if the signal's value has changes.
 class TwoWaySwitch
          The TwoWaySwitch class implements a switch with an input and two output signals (channels).
 

Methods in jaron.components with parameters of type SignalListener
 void Signal.addSignalListener(SignalListener listener)
          Adds the listener to the EventListener mechanism.
 void Signal.removeSignalListener(SignalListener listener)
          Removes the listener from the EventListener mechanism.
 

Uses of SignalListener in jaron.flightgear
 

Methods in jaron.flightgear with parameters of type SignalListener
 void FlightGearReceiver.addSignalListener(java.lang.String key, SignalListener listener)
          Adds a listener to a FlightGear (FG) signal that is identified by a key.
 

Uses of SignalListener in jaron.gui
 

Classes in jaron.gui that implement SignalListener
 class ActuatorXY
          The ActuatorXY class is a generic GUI control that provides the functionality to implement a component with an x- and a y-axis (e.g. a joystick).
 class Axis
          The Axis class represents an axis that can be used in an actuator (see ActuatorXY).
 

Methods in jaron.gui with parameters of type SignalListener
 void ActuatorXY.addListenerX(SignalListener listener)
          Adds a listener to the x-axis.
 void ActuatorXY.addListenerY(SignalListener listener)
          Adds a listener to the y-axis.
 

Uses of SignalListener in jaron.pde
 

Classes in jaron.pde that implement SignalListener
 class Joystick
          The Joystick class provides a virtual joystick for the Processing Development Environment (PDE).
 class RadioButton
          The RadioButton class provides a virtual on-off switch for the Processing Development Environment (PDE).
 class Servo
          The Servo class provides a virtual servo for the Processing Development Environment (PDE).
 class Slider
          The Slider class provides a virtual slider for the Processing Development Environment (PDE).
 

Methods in jaron.pde with parameters of type SignalListener
 void Slider.addSignalListener(SignalListener listener)
          Adds a listener to the slider.