Uses of Interface
jmri.Route
-
Packages that use Route Package Description apps.startup 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.beantable.routetable jmri.jmrit.logixng.actions jmri.managers Provides implementations of various JMRI managers.jmri.server.json.route -
-
Uses of Route in apps.startup
Methods in apps.startup that return Route Modifier and Type Method Description Route
TriggerRouteModel. getRoute()
Get the route. -
Uses of Route in jmri
Methods in jmri that return Route Modifier and Type Method Description Route
RouteManager. getBySystemName(java.lang.String s)
Route
RouteManager. getByUserName(java.lang.String s)
Route
RouteManager. getRoute(java.lang.String name)
Locate via user name, then system name if needed.Route
RouteManager. newRoute(java.lang.String userName)
Create a new Route if the route does not exist.Route
RouteManager. provideRoute(java.lang.String systemName, java.lang.String userName)
Provides existing Route by UserName then SystemName if one exists.Methods in jmri with parameters of type Route Modifier and Type Method Description void
RouteManager. deleteRoute(Route r)
Delete Route by removing it from the manager. -
Uses of Route in jmri.implementation
Classes in jmri.implementation that implement Route Modifier and Type Class Description class
DefaultRoute
Class providing the basic logic of the Route interface.Methods in jmri.implementation with parameters of type Route Modifier and Type Method Description (package private) void
DefaultConditionalExecute. triggerRoute(ConditionalAction action, Route r, Reference<java.lang.Integer> actionCount, java.util.List<java.lang.String> errorList)
-
Uses of Route in jmri.jmrit.beantable
Methods in jmri.jmrit.beantable that return Route Modifier and Type Method Description Route
RouteTableDataModel. getBySystemName(java.lang.String name)
Route
RouteTableDataModel. getByUserName(java.lang.String name)
Methods in jmri.jmrit.beantable with parameters of type Route Modifier and Type Method Description void
RouteTableDataModel. clickOn(Route t)
protected void
RouteTableDataModel. doDelete(Route bean)
Delete the bean after all the checking has been done. -
Uses of Route in jmri.jmrit.beantable.routetable
Fields in jmri.jmrit.beantable.routetable declared as Route Modifier and Type Field Description (package private) Route
AbstractRouteAddEditFrame. curRoute
Methods in jmri.jmrit.beantable.routetable with parameters of type Route Modifier and Type Method Description protected void
AbstractRouteAddEditFrame. setControlInformation(Route g)
Set the Sensor, Turnout, and delay control information for adding or editing.protected void
AbstractRouteAddEditFrame. setPageContent(Route route)
Populate the page fields.protected void
AbstractRouteAddEditFrame. setSensorInformation(Route g)
Sets the Sensor information for adding or editing.protected void
AbstractRouteAddEditFrame. setTurnoutInformation(Route g)
Set the Turnout information for adding or editing. -
Uses of Route in jmri.jmrit.logixng.actions
Methods in jmri.jmrit.logixng.actions that return types with arguments of type Route Modifier and Type Method Description LogixNG_SelectNamedBean<Route>
TriggerRoute. getSelectNamedBean()
-
Uses of Route in jmri.managers
Methods in jmri.managers that return Route Modifier and Type Method Description Route
DefaultRouteManager. getRoute(java.lang.String name)
Method to get an existing Route.Route
DefaultRouteManager. newRoute(java.lang.String userName)
Create a new Route if the route does not exist.Route
DefaultRouteManager. provide(java.lang.String name)
Provide Route by System Name.Route
DefaultRouteManager. provideRoute(java.lang.String systemName, java.lang.String userName)
Provides existing Route by UserName then SystemName if one exists.Methods in jmri.managers that return types with arguments of type Route Modifier and Type Method Description java.lang.Class<Route>
DefaultRouteManager. getNamedBeanClass()
Get the class of NamedBean supported by this Manager.Methods in jmri.managers with parameters of type Route Modifier and Type Method Description void
DefaultRouteManager. deleteRoute(Route r)
Remove an existing route. -
Uses of Route in jmri.server.json.route
Methods in jmri.server.json.route that return types with arguments of type Route Modifier and Type Method Description protected ProvidingManager<Route>
JsonRouteHttpService. getProvidingManager()
Methods in jmri.server.json.route with parameters of type Route Modifier and Type Method Description protected void
JsonRouteSocketService. addListenerToBean(Route bean)
com.fasterxml.jackson.databind.node.ObjectNode
JsonRouteHttpService. doGet(Route route, java.lang.String name, java.lang.String type, JsonRequest request)
com.fasterxml.jackson.databind.node.ObjectNode
JsonRouteHttpService. doPost(Route route, java.lang.String name, java.lang.String type, com.fasterxml.jackson.databind.JsonNode data, JsonRequest request)
Respond to an HTTP POST request for the requested route.
-