Class PrintRoutes
- java.lang.Object
-
- jmri.jmrit.operations.routes.tools.PrintRoutes
-
public class PrintRoutes extends java.lang.Object
Prints a summary of a route or all routes.This uses the older style printing, for compatibility with Java 1.1.8 in Macintosh MRJ
-
-
Field Summary
Fields Modifier and Type Field Description (package private) boolean
_isPreview
(package private) static java.lang.String
NEW_LINE
(package private) static java.lang.String
SPACE
(package private) static java.lang.String
TAB
-
Constructor Summary
Constructors Constructor Description PrintRoutes(boolean isPreview)
Prints or previews a summary of all routesPrintRoutes(boolean isPreview, Route route)
Prints or previews a summary of a route
-
-
-
Field Detail
-
NEW_LINE
static final java.lang.String NEW_LINE
- See Also:
- Constant Field Values
-
TAB
static final java.lang.String TAB
- See Also:
- Constant Field Values
-
SPACE
static final java.lang.String SPACE
- See Also:
- Constant Field Values
-
_isPreview
boolean _isPreview
-
-
Constructor Detail
-
PrintRoutes
public PrintRoutes(boolean isPreview)
Prints or previews a summary of all routes- Parameters:
isPreview
- true if print preview
-
PrintRoutes
public PrintRoutes(boolean isPreview, Route route)
Prints or previews a summary of a route- Parameters:
isPreview
- true if print previewroute
- The route to be printed
-
-