--- old/src/java.corba/share/classes/org/omg/CORBA/LongHolder.java 2015-09-12 23:50:58.499572043 +0300 +++ new/src/java.corba/share/classes/org/omg/CORBA/LongHolder.java 2015-09-12 23:50:58.391571507 +0300 @@ -30,54 +30,54 @@ import org.omg.CORBA.portable.OutputStream; /** - * The Holder for Long. For more information on + * The Holder for {@code Long}. For more information on * Holder files, see * "Generated Files: Holder Files".

- * A Holder class for a long + * A Holder class for a {@code long} * that is used to store "out" and "inout" parameters in IDL methods. - * If an IDL method signature has an IDL long long as an "out" + * If an IDL method signature has an IDL {@code long long} as an "out" * or "inout" parameter, the programmer must pass an instance of - * LongHolder as the corresponding + * {@code LongHolder} as the corresponding * parameter in the method invocation; for "inout" parameters, the programmer * must also fill the "in" value to be sent to the server. * Before the method invocation returns, the ORB will fill in the * value corresponding to the "out" value returned from the server. *

- * If myLongHolder is an instance of LongHolder, - * the value stored in its value field can be accessed with - * myLongHolder.value. + * If {@code myLongHolder} is an instance of {@code LongHolder}, + * the value stored in its {@code value} field can be accessed with + * {@code myLongHolder.value}. * * @since JDK1.2 */ public final class LongHolder implements Streamable { /** - * The long value held by this LongHolder + * The {@code long} value held by this {@code LongHolder} * object. */ public long value; /** - * Constructs a new LongHolder object with its - * value field initialized to 0. + * Constructs a new {@code LongHolder} object with its + * {@code value} field initialized to {@code 0}. */ public LongHolder() { } /** - * Constructs a new LongHolder object with its - * value field initialized to the given - * long. - * @param initial the long with which to initialize - * the value field of the newly-created - * LongHolder object + * Constructs a new {@code LongHolder} object with its + * {@code value} field initialized to the given + * {@code long}. + * @param initial the {@code long} with which to initialize + * the {@code value} field of the newly-created + * {@code LongHolder} object */ public LongHolder(long initial) { value = initial; } /** - * Reads from input and initalizes the value in the Holder + * Reads from {@code input} and initalizes the value in the Holder * with the unmarshalled data. * * @param input the InputStream containing CDR formatted data from the wire @@ -87,7 +87,7 @@ } /** - * Marshals to output the value in the Holder. + * Marshals to {@code output} the value in the Holder. * * @param output the OutputStream which will contain the CDR formatted data */ @@ -96,7 +96,7 @@ } /** - * Returns the TypeCode object + * Returns the {@code TypeCode} object * corresponding to the value held in the Holder. * * @return the TypeCode of the value held in the holder