Package Torello.Java.Build
Class Printing
- java.lang.Object
-
- Torello.Java.Build.Printing
-
public class Printing extends java.lang.Object
A few minor printing utilities.
Internal Helper Class:
Though often kept out of the Publicly-Visible A.P.I., Internally-Use-Only classes will sometimes remain publicly visible within this Java-Doc Hierarchy. The methods in this class have been declared with thePackage-Private
Level of visibility, and they are unlikely of much use to an outside programmer.
However, understanding the build process may be of some interest to a programmer, and this file's source-code may easily be viewed by clicking on the Hi-Lited Source-Code Link provided below.
Hi-Lited Source-Code:- View Here: Torello/Java/Build/Printing.java
- Open New Browser-Tab: Torello/Java/Build/Printing.java
File Size: 5,211 Bytes Line Count: 156 '\n' Characters Found
Stateless Class:This class neither contains any program-state, nor can it be instantiated. The@StaticFunctional
Annotation may also be called 'The Spaghetti Report'.Static-Functional
classes are, essentially, C-Styled Files, without any constructors or non-static member fields. It is a concept very similar to the Java-Bean's@Stateless
Annotation.
- 1 Constructor(s), 1 declared private, zero-argument constructor
- 3 Method(s), 3 declared static
- 11 Field(s), 11 declared static, 11 declared final
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method static void
PLS(Appendable a, boolean unixColors)
-
-
-
Method Detail
-
PLS
public static void PLS(java.lang.Appendable a, boolean unixColors) throws java.io.IOException
Used elsewhere. Must be public until further notice. This will hopefully one day be relegated to the annals of "Package-Private".- Throws:
java.io.IOException
- Code:
- Exact Method Body:
a.append( "\n\n" + (unixColors ? BCYAN : "") + "*********************************************************************************\n" + "*********************************************************************************\n" + (unixColors ? RESET : "") + "\n\n" );
-
-