--- old/src/java.corba/share/classes/com/sun/tools/corba/se/idl/Compile.java 2015-05-05 20:15:06.479833423 +0400 +++ new/src/java.corba/share/classes/com/sun/tools/corba/se/idl/Compile.java 2015-05-05 20:15:06.395833423 +0400 @@ -52,7 +52,7 @@ * Compiler usage: *

* - * java com.sun.tools.corba.se.idl.toJava.compile [options] + * {@code java com.sun.tools.corba.se.idl.toJava.compile [options] } *

* * where <idl file> is the name of a file containing IDL definitions, @@ -62,17 +62,17 @@ * * Options: *
- *
-i <include path> + *
{@code -i } *
By default, the current directory is scanned for included files. * This option adds another directory. See also Note 1 below. * - *
-d <symbol> - *
This is equivalent to the following line in an IDL file: #define <symbol> + *
{@code -d } + *
This is equivalent to the following line in an IDL file: {@code #define } * - *
-emitAll + *
{@code -emitAll} *
Emit all types, including those found in #included files. * - *
-v + *
{@code -v} *
Verbose mode. *
* @@ -81,9 +81,9 @@ * time. Instead, these can be placed into a config file called idl.config. * This file must be in the CLASSPATH. The format of the includes line is: * - *
+ * 
{@code
  * includes=;;...;
- * 
+ * }
* * Note that the path separator character, here shown as a semicolon, is * machine dependent. For instance, on Windows 95 this character is a @@ -481,10 +481,10 @@ **/ public Arguments arguments = null; /** - * This hashtable contains pairs. It is filled in by + * This hashtable contains {@code } pairs. It is filled in by * extenders in cases where they wish to override an IDL type name with * some other name. For instance, when mapping to Java, there could be - * an overrideNames entry of <"TRUE", "true">. NOTE: Do NOT change this + * an overrideNames entry of {@code <"TRUE", "true">}. NOTE: Do NOT change this * variable to a new Hash table. Just add elements to it. **/ protected Hashtable overrideNames = new Hashtable (); @@ -495,8 +495,8 @@ **/ protected Hashtable symbolTable = new Hashtable (); /** - * This is a vector of strings of the form "IDLfile" or . It is - * a list of the files included in the given IDL file. It will be empty + * This is a vector of strings of the form {@code "IDLfile"} or {@code }. + * It is a list of the files included in the given IDL file. It will be empty * until the parse method executes. If errors are encountered, the state * of this vector is undefined. **/