Uses of Interface
jmri.CabSignal
-
Packages that use CabSignal Package Description jmri Provides basic interfaces and certain core implementations for the JMRI layout management concepts.jmri.implementation Provides implementations of various JMRI interfaces.jmri.jmrix.can.cbus Defines classes for interfacing to a MERG CBUS network.jmri.jmrix.loconet Provides access to LocoNet systems, along with a lot of Swing-based tools.jmri.managers Provides implementations of various JMRI managers. -
-
Uses of CabSignal in jmri
Methods in jmri that return CabSignal Modifier and Type Method Description CabSignal
CabSignalManager. getCabSignal(LocoAddress address)
Find a CabSignal with the given address, and return it.CabSignal[]
CabSignalManager. getCabSignalArray()
Get an array of known cab signals. -
Uses of CabSignal in jmri.implementation
Classes in jmri.implementation that implement CabSignal Modifier and Type Class Description class
DefaultCabSignal
Default implementation of a Cab Signal Object, describing the state of the track ahead relative to a locomotive with a given address. -
Uses of CabSignal in jmri.jmrix.can.cbus
Classes in jmri.jmrix.can.cbus that implement CabSignal Modifier and Type Class Description class
CbusCabSignal
CBUS implementation of a Cab Signal Object, describing the state of the track ahead relative to a locomotive with a given address.Methods in jmri.jmrix.can.cbus that return CabSignal Modifier and Type Method Description protected CabSignal
CbusCabSignalManager. createCabSignal(LocoAddress address)
Create a new cab signal with the given address. -
Uses of CabSignal in jmri.jmrix.loconet
Classes in jmri.jmrix.loconet that implement CabSignal Modifier and Type Class Description class
LnCabSignal
Ln implementation of a Cab Signal Object, describing the state of the track ahead relative to a locomotive with a given address.Methods in jmri.jmrix.loconet that return CabSignal Modifier and Type Method Description protected CabSignal
LnCabSignalManager. createCabSignal(LocoAddress address)
Create a new cab signal with the given address. -
Uses of CabSignal in jmri.managers
Fields in jmri.managers with type parameters of type CabSignal Modifier and Type Field Description protected java.util.HashMap<LocoAddress,CabSignal>
AbstractCabSignalManager. signalList
Methods in jmri.managers that return CabSignal Modifier and Type Method Description protected abstract CabSignal
AbstractCabSignalManager. createCabSignal(LocoAddress address)
Create a new cab signal with the given address.protected CabSignal
DefaultCabSignalManager. createCabSignal(LocoAddress address)
Create a new cab signal with the given address.CabSignal
AbstractCabSignalManager. getCabSignal(LocoAddress address)
Find a CabSignal with the given address, and return it.CabSignal[]
AbstractCabSignalManager. getCabSignalArray()
Get an array of known cab signals.
-