--- old/src/java.corba/share/classes/org/omg/CORBA/ValueBaseHolder.java 2015-09-12 23:51:19.979678557 +0300 +++ new/src/java.corba/share/classes/org/omg/CORBA/ValueBaseHolder.java 2015-09-12 23:51:19.863677982 +0300 @@ -30,53 +30,53 @@ import org.omg.CORBA.portable.OutputStream; /** - * The Holder for ValueBase. For more information on + * The Holder for {@code ValueBase}. For more information on * Holder files, see * "Generated Files: Holder Files".

- * A Holder class for a java.io.Serializable + * A Holder class for a {@code java.io.Serializable} * that is used to store "out" and "inout" parameters in IDL methods. - * If an IDL method signature has an IDL ValueBase as an "out" + * If an IDL method signature has an IDL {@code ValueBase} as an "out" * or "inout" parameter, the programmer must pass an instance of - * ValueBaseHolder as the corresponding + * {@code ValueBaseHolder} 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 myValueBaseHolder is an instance of ValueBaseHolder, - * the value stored in its value field can be accessed with - * myValueBaseHolder.value. + * If {@code myValueBaseHolder} is an instance of {@code ValueBaseHolder}, + * the value stored in its {@code value} field can be accessed with + * {@code myValueBaseHolder.value}. * */ public final class ValueBaseHolder implements Streamable { /** - * The java.io.Serializable value held by this - * ValueBaseHolder object. + * The {@code java.io.Serializable} value held by this + * {@code ValueBaseHolder} object. */ public java.io.Serializable value; /** - * Constructs a new ValueBaseHolder object with its - * value field initialized to 0. + * Constructs a new {@code ValueBaseHolder} object with its + * {@code value} field initialized to {@code 0}. */ public ValueBaseHolder() { } /** - * Constructs a new ValueBaseHolder object with its - * value field initialized to the given - * java.io.Serializable. - * @param initial the java.io.Serializable with which to initialize - * the value field of the newly-created - * ValueBaseHolder object + * Constructs a new {@code ValueBaseHolder} object with its + * {@code value} field initialized to the given + * {@code java.io.Serializable}. + * @param initial the {@code java.io.Serializable} with which to initialize + * the {@code value} field of the newly-created + * {@code ValueBaseHolder} object */ public ValueBaseHolder(java.io.Serializable 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 @@ -86,7 +86,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 */ @@ -95,7 +95,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