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

* FixedHolder is a container class for values of IDL type "fixed", @@ -69,7 +69,7 @@ * Read a fixed point value from the input stream and store it in * the value member. * - * @param input the InputStream to read from. + * @param input the {@code InputStream} to read from. */ public void _read(InputStream input) { value = input.read_fixed(); @@ -77,9 +77,9 @@ /** * Write the fixed point value stored in this holder to an - * OutputStream. + * {@code OutputStream}. * - * @param output the OutputStream to write into. + * @param output the {@code OutputStream} to write into. */ public void _write(OutputStream output) { output.write_fixed(value); @@ -87,9 +87,9 @@ /** - * Return the TypeCode of this holder object. + * Return the {@code TypeCode} of this holder object. * - * @return the TypeCode object. + * @return the {@code TypeCode} object. */ public org.omg.CORBA.TypeCode _type() { return ORB.init().get_primitive_tc(TCKind.tk_fixed);