All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class epp.Opts

java.lang.Object
   |
   +----epp.Opts

public class Opts
extends Object
クラス Opts の static field は、 コマンドラインの引数によって指定されたオプションに応じて、 EPP main routine によって値が設定されます。.

EPP1.1.0 beta3 では、以下のように定義されています。

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");
}

See Also:
Epp

Constructor Index

 o Opts()

Constructors

 o Opts
 public Opts()

All Packages  Class Hierarchy  This Package  Previous  Next  Index