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.StringNEW_LINE(package private) static java.lang.StringSPACE(package private) static java.lang.StringTAB
-
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
-
-