--- old/src/java.xml.bind/share/classes/javax/xml/bind/DatatypeConverterInterface.java 2015-09-19 13:15:30.468769623 +0300 +++ new/src/java.xml.bind/share/classes/javax/xml/bind/DatatypeConverterInterface.java 2015-09-19 13:15:30.328768929 +0300 @@ -194,7 +194,7 @@ * Converts the string argument into a QName value. * *

- * String parameter lexicalXSDQname must conform to lexical value space specifed at + * String parameter {@code lexicalXSDQname} must conform to lexical value space specifed at * XML Schema Part 2:Datatypes specification:QNames * * @param lexicalXSDQName @@ -204,7 +204,7 @@ * @return * A QName value represented by the string argument. * @throws IllegalArgumentException if string parameter does not conform to XML Schema Part 2 specification or - * if namespace prefix of lexicalXSDQname is not bound to a URI in NamespaceContext nsc. + * if namespace prefix of {@code lexicalXSDQname} is not bound to a URI in NamespaceContext {@code nsc}. */ public javax.xml.namespace.QName parseQName( String lexicalXSDQName, javax.xml.namespace.NamespaceContext nsc); @@ -249,7 +249,7 @@ * of xsd:unsignedInt. * @return * A long value represented by the string argument. - * @throws NumberFormatException if string parameter can not be parsed into a long value. + * @throws NumberFormatException if string parameter can not be parsed into a {@code long} value. */ public long parseUnsignedInt( String lexicalXSDUnsignedInt ); @@ -260,7 +260,7 @@ * representation of xsd:unsignedShort. * @return * An int value represented by the string argument. - * @throws NumberFormatException if string parameter can not be parsed into an int value. + * @throws NumberFormatException if string parameter can not be parsed into an {@code int} value. */ public int parseUnsignedShort( String lexicalXSDUnsignedShort ); @@ -313,7 +313,7 @@ * A BigInteger value * @return * A string containing a lexical representation of xsd:integer - * @throws IllegalArgumentException val is null. + * @throws IllegalArgumentException {@code val} is null. */ public String printInteger( java.math.BigInteger val ); @@ -351,7 +351,7 @@ * A BigDecimal value * @return * A string containing a lexical representation of xsd:decimal - * @throws IllegalArgumentException val is null. + * @throws IllegalArgumentException {@code val} is null. */ public String printDecimal( java.math.BigDecimal val ); @@ -399,8 +399,8 @@ * A namespace context for interpreting a prefix within a QName. * @return * A string containing a lexical representation of QName - * @throws IllegalArgumentException if val is null or - * if nsc is non-null or nsc.getPrefix(nsprefixFromVal) is null. + * @throws IllegalArgumentException if {@code val} is null or + * if {@code nsc} is non-null or {@code nsc.getPrefix(nsprefixFromVal)} is null. */ public String printQName( javax.xml.namespace.QName val, javax.xml.namespace.NamespaceContext nsc ); @@ -411,7 +411,7 @@ * A Calendar value * @return * A string containing a lexical representation of xsd:dateTime - * @throws IllegalArgumentException if val is null. + * @throws IllegalArgumentException if {@code val} is null. */ public String printDateTime( java.util.Calendar val ); @@ -421,7 +421,7 @@ * an array of bytes * @return * A string containing a lexical representation of xsd:base64Binary - * @throws IllegalArgumentException if val is null. + * @throws IllegalArgumentException if {@code val} is null. */ public String printBase64Binary( byte[] val ); @@ -431,7 +431,7 @@ * an array of bytes * @return * A string containing a lexical representation of xsd:hexBinary - * @throws IllegalArgumentException if val is null. + * @throws IllegalArgumentException if {@code val} is null. */ public String printHexBinary( byte[] val ); @@ -459,7 +459,7 @@ * A Calendar value * @return * A string containing a lexical representation of xsd:time - * @throws IllegalArgumentException if val is null. + * @throws IllegalArgumentException if {@code val} is null. */ public String printTime( java.util.Calendar val ); @@ -469,7 +469,7 @@ * A Calendar value * @return * A string containing a lexical representation of xsd:date - * @throws IllegalArgumentException if val is null. + * @throws IllegalArgumentException if {@code val} is null. */ public String printDate( java.util.Calendar val );