--- old/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/ast/builder/SchemaBuilder.java 2015-09-19 13:16:35.593092557 +0300 +++ new/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/ast/builder/SchemaBuilder.java 2015-09-19 13:16:35.437091784 +0300 @@ -111,13 +111,13 @@ * @param parent * The parent scope. null if there's no parent scope. * For example, if the complete document looks like the following: - *

+     *      <pre>{@code
      *      <grammar>
      *        <start><element name="root"><empty/></element></start>
      *      </grammar>
-     *      
+ * } * Then when the outer-most {@link Grammar} is created, it will - * receive the null parent. + * receive the {@code null} parent. */ Grammar makeGrammar(Scope parent); @@ -126,12 +126,12 @@ * * such as, * - *

+     * <pre>{@code
      * <element name="foo">     <!-- this becomes 'P' -->
      *   <foreign:annotation /> <!-- this becomes 'A' -->
      *   ...
      * </element>
-     * 
+ * } */ P annotate(P p, A anno) throws BuildException; @@ -140,12 +140,12 @@ * * such as, * - *

+     * <pre>{@code
      * <element name="foo">
      *   <empty />              <!-- this becomes 'P' -->
      *   <foreign:annotation /> <!-- this becomes 'E' -->
      * </element>
-     * 
+ * } */ P annotateAfter(P p, E e) throws BuildException;