--- old/src/java.xml.bind/share/classes/javax/xml/bind/ValidationEventHandler.java 2015-09-19 13:15:36.676800407 +0300 +++ new/src/java.xml.bind/share/classes/javax/xml/bind/ValidationEventHandler.java 2015-09-19 13:15:36.544799753 +0300 @@ -39,7 +39,7 @@ * handlers. * *

- * If the handleEvent method throws an unchecked runtime exception, + * If the {@code handleEvent} method throws an unchecked runtime exception, * the JAXB Provider must treat that as if the method returned false, effectively * terminating whatever operation was in progress at the time (unmarshal, * validate, or marshal). @@ -49,7 +49,7 @@ * by the specification and may result in unexpected behaviour. * *

- * Failing to return false from the handleEvent method after + * Failing to return false from the {@code handleEvent} method after * encountering a fatal error is undefined by the specification and may result * in unexpected behavior. * @@ -59,7 +59,9 @@ * See: Validator javadocs * * - * @author

+ * @author * @see Unmarshaller * @see Validator * @see Marshaller @@ -85,8 +87,8 @@ * @return true if the JAXB Provider should attempt to continue the current * unmarshal, validate, or marshal operation after handling this * warning/error, false if the provider should terminate the current - * operation with the appropriate UnmarshalException, - * ValidationException, or MarshalException. + * operation with the appropriate {@code UnmarshalException}, + * {@code ValidationException}, or {@code MarshalException}. * @throws IllegalArgumentException if the event object is null. */ public boolean handleEvent( ValidationEvent event );