--- old/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/spi/db/BindingHelper.java 2015-09-19 13:16:16.064995723 +0300 +++ new/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/spi/db/BindingHelper.java 2015-09-19 13:16:15.932995068 +0300 @@ -69,7 +69,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". @@ -111,17 +111,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}