--- old/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/XSType.java 2015-09-19 13:16:39.585112353 +0300 +++ new/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/XSType.java 2015-09-19 13:16:39.429111579 +0300 @@ -35,7 +35,7 @@ /** * Returns the base type of this type. * - * Note that if this type represents xs:anyType, this method returns itself. + * Note that if this type represents {@code xs:anyType}, this method returns itself. * This is awkward as an API, but it follows the schema specification. * * @return always non-null. @@ -48,9 +48,9 @@ int getDerivationMethod(); - /** Returns true if this instanceof XSSimpleType. */ + /** Returns true if {@code this instanceof XSSimpleType}. */ boolean isSimpleType(); - /** Returns true if this instanceof XSComplexType. */ + /** Returns true if {@code this instanceof XSComplexType}. */ boolean isComplexType(); /** @@ -90,7 +90,7 @@ * Returns true if this type is derived from the specified type. * *

- * Note that t.isDerivedFrom(t) returns true. + * Note that {@code t.isDerivedFrom(t)} returns true. */ boolean isDerivedFrom( XSType t ); }