Uses of Class
jmri.EntryPoint
-
Packages that use EntryPoint 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.jmrit.beantable Provides table GUI for manipulating NamedBean objects: Turnouts, Sensors, SignalHeads.jmri.jmrit.display.layoutEditor Layout Editor currently represents both structure and graphical display through a single set of objects. -
-
Uses of EntryPoint in jmri
Methods in jmri that return EntryPoint Modifier and Type Method Description EntryPoint
Section. getEntryPointFromBlock(Block b, int dir)
Get the EntryPoint for entry from the specified Block for travel in the specified direction.EntryPoint
Section. getEntryPointFromSection(Section s, int dir)
Get the EntryPoint for entry from the specified Section for travel in specified direction.EntryPoint
Section. getExitPointToBlock(Block b, int dir)
Get the EntryPoint for exit to the specified Block for travel in the specified direction.EntryPoint
Section. getExitPointToSection(Section s, int dir)
Get the EntryPoint for exit to specified Section for travel in the specified direction.Methods in jmri that return types with arguments of type EntryPoint Modifier and Type Method Description java.util.List<EntryPoint>
Section. getEntryPointList()
java.util.List<EntryPoint>
Section. getForwardEntryPointList()
java.util.List<EntryPoint>
Section. getReverseEntryPointList()
Methods in jmri with parameters of type EntryPoint Modifier and Type Method Description void
Section. addToForwardList(EntryPoint ep)
void
Section. addToReverseList(EntryPoint ep)
boolean
Section. isForwardEntryPoint(EntryPoint ep)
boolean
Section. isReverseEntryPoint(EntryPoint ep)
void
Section. removeEntryPoint(EntryPoint ep)
-
Uses of EntryPoint in jmri.implementation
Methods in jmri.implementation that return EntryPoint Modifier and Type Method Description EntryPoint
DefaultSection. getEntryPointFromBlock(Block b, int dir)
Get the EntryPoint for entry from the specified Block for travel in the specified direction.EntryPoint
DefaultSection. getEntryPointFromSection(Section s, int dir)
Get the EntryPoint for entry from the specified Section for travel in specified direction.EntryPoint
DefaultSection. getExitPointToBlock(Block b, int dir)
Get the EntryPoint for exit to the specified Block for travel in the specified direction.EntryPoint
DefaultSection. getExitPointToSection(Section s, int dir)
Get the EntryPoint for exit to specified Section for travel in the specified direction.Methods in jmri.implementation that return types with arguments of type EntryPoint Modifier and Type Method Description java.util.List<EntryPoint>
DefaultSection. getEntryPointList()
java.util.List<EntryPoint>
DefaultSection. getForwardEntryPointList()
java.util.List<EntryPoint>
DefaultSection. getReverseEntryPointList()
Methods in jmri.implementation with parameters of type EntryPoint Modifier and Type Method Description void
DefaultSection. addToForwardList(EntryPoint ep)
void
DefaultSection. addToReverseList(EntryPoint ep)
boolean
DefaultSection. isForwardEntryPoint(EntryPoint ep)
boolean
DefaultSection. isReverseEntryPoint(EntryPoint ep)
void
DefaultSection. removeEntryPoint(EntryPoint ep)
-
Uses of EntryPoint in jmri.jmrit.beantable
Fields in jmri.jmrit.beantable with type parameters of type EntryPoint Modifier and Type Field Description (package private) java.util.ArrayList<EntryPoint>
SectionTableAction. entryPointList
-
Uses of EntryPoint in jmri.jmrit.display.layoutEditor
Method parameters in jmri.jmrit.display.layoutEditor with type arguments of type EntryPoint Modifier and Type Method Description int
ConnectivityUtil. getDirectionFromAnchor(java.util.List<EntryPoint> mForwardEntryPoints, java.util.List<EntryPoint> mReverseEntryPoints, PositionablePoint p)
Get the direction of the block boundary anchor point p.
-