--- old/src/java.xml.bind/share/classes/javax/xml/bind/annotation/XmlSchema.java 2015-09-19 13:15:46.592849578 +0300 +++ new/src/java.xml.bind/share/classes/javax/xml/bind/annotation/XmlSchema.java 2015-09-19 13:15:46.456848904 +0300 @@ -163,12 +163,12 @@ * manually. * *

- * Value could be any absolute URI, like http://example.org/some.xsd. + * Value could be any absolute URI, like {@code http://example.org/some.xsd}. * It is also possible to specify the empty string, to indicate * that the schema is externally available but the location is * unspecified (and thus it's the responsibility of the reader of the generate * schema to locate it.) Finally, the default value of this property - * "##generate" indicates that the schema generator is going + * {@code "##generate"} indicates that the schema generator is going * to generate components for this namespace (as it did in JAXB 2.0.) * *

@@ -179,17 +179,17 @@ * *

Note to implementor

*

- * More precisely, the value must be either "", "##generate", or + * More precisely, the value must be either {@code ""}, {@code "##generate"}, or * - * a valid lexical representation of xs:anyURI that begins - * with <scheme>:. + * a valid lexical representation of {@code xs:anyURI} that begins + * with {@code :}. * *

* A schema generator is expected to generate a corresponding - * <xs:import namespace="..." schemaLocation="..."/> (or - * no schemaLocation attribute at all if the empty string is specified.) + * {@code } (or + * no {@code schemaLocation} attribute at all if the empty string is specified.) * However, the schema generator is allowed to use a different value in - * the schemaLocation attribute (including not generating + * the {@code schemaLocation} attribute (including not generating * such attribute), for example so that the user can specify a local * copy of the resource through the command line interface. *