--- old/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/api/JAXBRIContext.java 2015-09-19 13:15:10.816672174 +0300 +++ new/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/api/JAXBRIContext.java 2015-09-19 13:15:10.676671480 +0300 @@ -352,7 +352,7 @@ * Accordingly, this method may return an identifier that collides with reserved words. * *

- * Use JJavaName.isJavaIdentifier(String) to check for such collision. + * Use {@code JJavaName.isJavaIdentifier(String)} to check for such collision. * * @return * Typically, this method returns "nameLikeThis". @@ -394,17 +394,17 @@ * *

* For example, given the following - *


+     * <pre>{@code
      * interface Foo<T> extends List<List<T>> {}
      * interface Bar extends Foo<String> {}
-     * 
+ * } * This method works like this: - *

+     * <pre>{@code
      * getBaseClass( Bar, List ) = List<List<String>
      * getBaseClass( Bar, Foo  ) = Foo<String>
      * getBaseClass( Foo<? extends Number>, Collection ) = Collection<List<? extends Number>>
      * getBaseClass( ArrayList<? extends BigInteger>, List ) = List<? extends BigInteger>
-     * 
+ * } * * @param type * The type that derives from {@code baseType} @@ -460,7 +460,7 @@ /** * The property that you can specify to {@link JAXBContext#newInstance} - * to allow unmarshaller to honor xsi:nil anywhere, even if they are + * to allow unmarshaller to honor {@code xsi:nil} anywhere, even if they are * not specifically allowed by the schema. * * Boolean