Uses of Interface
com.flightpanels.scs.IUpdateable

Uses of IUpdateable in com.flightpanels.scs
 

Methods in com.flightpanels.scs with parameters of type IUpdateable
 void Receiver.requestData(long id, boolean id29, IUpdateable<java.lang.Boolean> update, java.lang.Boolean ref)
          Request to receive updates on the given CAN Id from the bus.
 void Receiver.requestData(long id, boolean id29, IUpdateable<java.lang.Double> update, java.lang.Double ref)
          Request to receive updates on the given CAN Id from the bus.
 void Receiver.requestData(long id, boolean id29, IUpdateable<java.lang.Float> update, java.lang.Float ref)
          Request to receive updates on the given CAN Id from the bus.
 void Receiver.requestData(long id, boolean id29, IUpdateable<java.lang.Integer> update, java.lang.Integer ref)
          Request to receive updates on the given CAN Id from the bus.
 void Receiver.requestData(long id, boolean id29, IUpdateable<java.lang.String> update, java.lang.String ref)
          Request to receive updates on the given CAN Id from the bus.
 void Receiver.requestData(long id, boolean id29, IUpdateable<java.util.Vector<java.lang.Float>> update, java.util.Vector<java.lang.Float> ref)
          Request to receive updates on the given CAN Id from the bus.
 void DataReference.signUp(IUpdateable ref)
          Geez, where is my little brown Java barf bag?
 void IDataReference.signUp(IUpdateable ref)
          add another IUpdateable to the list of references to be updated
 

Constructors in com.flightpanels.scs with parameters of type IUpdateable
DataReference(IUpdateable<T> updateable)
           
DataReferenceBool(IUpdateable<java.lang.Boolean> updateable)
           
DataReferenceDouble(IUpdateable<java.lang.Double> updateable)
           
DataReferenceFloat(IUpdateable<java.lang.Float> updateable)
           
DataReferenceFloatVector(IUpdateable<java.util.Vector<java.lang.Float>> updateable)
           
DataReferenceInt(IUpdateable<java.lang.Integer> updateable)
           
DataReferenceString(IUpdateable<java.lang.String> updateable)