All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----epp.Opts
Opts
class has static fields of which values are
set by the EPP main routine according to the options specified as
command line arguments.
In EPP1.1.0 beta3, it is defined as follows.
public class Opts { public static String eppSourceVersion = "1.1.0beta3"; public static String eppTranslatorVersion = EPP_VERSION(); // Output stream for log. public static PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter(FileDescriptor.err)), true); public static boolean log = false; public static boolean forceTranslation = false; public static boolean global = false; public static java.util.Vector extraPlugIns = new java.util.Vector(); public static boolean printToken = false; public static boolean printTree = false; public static boolean printTreeWithLineNumber = false; public static boolean printTreeWithType = false; public static boolean printTreeWithDots = false; public static boolean newlineForReadability = false; public static boolean recursive = false; public static boolean nocatch = false; public static boolean nocatchFatal = false; public static boolean commentColon = false; public static boolean repeatTypeCheck = false; // Currently not used. public static boolean noTypeChecking = true; public static boolean noCodeEmitting = false; public static boolean sml = false; public static boolean readableTree = false; public static String plugInPackagePrefix = null; public static String lineSeparator = System.getProperty("line.separator"); }
public Opts()
All Packages Class Hierarchy This Package Previous Next Index