< prev index next >

src/java.xml.bind/share/classes/javax/xml/bind/helpers/AbstractUnmarshallerImpl.java

Print this page

        

*** 51,61 **** import java.io.Reader; import java.net.MalformedURLException; import java.net.URL; /** ! * Partial default <tt>Unmarshaller</tt> implementation. * * <p> * This class provides a partial default implementation for the * {@link javax.xml.bind.Unmarshaller}interface. * --- 51,61 ---- import java.io.Reader; import java.net.MalformedURLException; import java.net.URL; /** ! * Partial default {@code Unmarshaller} implementation. * * <p> * This class provides a partial default implementation for the * {@link javax.xml.bind.Unmarshaller}interface. *
*** 244,254 **** /** * Allow an application to register a validation event handler. * <p> * The validation event handler will be called by the JAXB Provider if any * validation errors are encountered during calls to any of the ! * <tt>unmarshal</tt> methods. If the client application does not register * a validation event handler before invoking the unmarshal methods, then * all validation events will be silently ignored and may result in * unexpected behaviour. * * @param handler the validation event handler --- 244,254 ---- /** * Allow an application to register a validation event handler. * <p> * The validation event handler will be called by the JAXB Provider if any * validation errors are encountered during calls to any of the ! * {@code unmarshal} methods. If the client application does not register * a validation event handler before invoking the unmarshal methods, then * all validation events will be silently ignored and may result in * unexpected behaviour. * * @param handler the validation event handler
*** 265,275 **** } } /** * Specifies whether or not the Unmarshaller should validate during ! * unmarshal operations. By default, the <tt>Unmarshaller</tt> does * not validate. * <p> * This method may only be invoked before or after calling one of the * unmarshal methods. * --- 265,275 ---- } } /** * Specifies whether or not the Unmarshaller should validate during ! * unmarshal operations. By default, the {@code Unmarshaller} does * not validate. * <p> * This method may only be invoked before or after calling one of the * unmarshal methods. *
< prev index next >