--- old/src/java.corba/share/classes/org/omg/CORBA/FloatHolder.java 2015-09-12 23:50:53.467547090 +0300 +++ new/src/java.corba/share/classes/org/omg/CORBA/FloatHolder.java 2015-09-12 23:50:53.359546555 +0300 @@ -31,45 +31,45 @@ /** - * The Holder for Float. For more information on + * The Holder for {@code Float}. For more information on * Holder files, see * "Generated Files: Holder Files".

- * A Holder class for a float + * A Holder class for a {@code float} * that is used to store "out" and "inout" parameters in IDL methods. - * If an IDL method signature has an IDL float as an "out" + * If an IDL method signature has an IDL {@code float} as an "out" * or "inout" parameter, the programmer must pass an instance of - * FloatHolder as the corresponding + * {@code FloatHolder} 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 myFloatHolder is an instance of FloatHolder, - * the value stored in its value field can be accessed with - * myFloatHolder.value. + * If {@code myFloatHolder} is an instance of {@code FloatHolder}, + * the value stored in its {@code value} field can be accessed with + * {@code myFloatHolder.value}. * * @since JDK1.2 */ public final class FloatHolder implements Streamable { /** - * The float value held by this FloatHolder + * The {@code float} value held by this {@code FloatHolder} * object. */ public float value; /** - * Constructs a new FloatHolder object with its - * value field initialized to 0.0. + * Constructs a new {@code FloatHolder} object with its + * {@code value} field initialized to 0.0. */ public FloatHolder() { } /** - * Constructs a new FloatHolder object for the given - * float. - * @param initial the float with which to initialize - * the value field of the new - * FloatHolder object + * Constructs a new {@code FloatHolder} object for the given + * {@code float}. + * @param initial the {@code float} with which to initialize + * the {@code value} field of the new + * {@code FloatHolder} object */ public FloatHolder(float initial) { value = initial; @@ -79,7 +79,7 @@ * Read a float from an input stream and initialize the value * member with the float value. * - * @param input the InputStream to read from. + * @param input the {@code InputStream} to read from. */ public void _read(InputStream input) { value = input.read_float(); @@ -88,16 +88,16 @@ /** * Write the float value into an output stream. * - * @param output the OutputStream to write into. + * @param output the {@code OutputStream} to write into. */ public void _write(OutputStream output) { output.write_float(value); } /** - * Return the TypeCode of this Streamable. + * Return the {@code TypeCode} of this Streamable. * - * @return the TypeCode object. + * @return the {@code TypeCode} object. */ public org.omg.CORBA.TypeCode _type() { return ORB.init().get_primitive_tc(TCKind.tk_float);