< prev index next >

src/java.xml.bind/share/classes/javax/xml/bind/Marshaller.java

Print this page

        

*** 371,381 **** * If any unexpected problem occurs during the marshalling. * @throws MarshalException * If the {@link ValidationEventHandler ValidationEventHandler} * returns false from its {@code handleEvent} method or the * {@code Marshaller} is unable to marshal {@code jaxbElement} (or any ! * object reachable from {@code jaxbElement}). See <a href="{@docRoot}/javax/xml/bind/Marshaller.html#elementMarshalling"> * Marshalling a JAXB element</a>. * @throws IllegalArgumentException * If any of the method parameters are null */ public void marshal( Object jaxbElement, javax.xml.transform.Result result ) --- 371,381 ---- * If any unexpected problem occurs during the marshalling. * @throws MarshalException * If the {@link ValidationEventHandler ValidationEventHandler} * returns false from its {@code handleEvent} method or the * {@code Marshaller} is unable to marshal {@code jaxbElement} (or any ! * object reachable from {@code jaxbElement}). See <a href="{@docRoot}/java/xml/bind/Marshaller.html#elementMarshalling"> * Marshalling a JAXB element</a>. * @throws IllegalArgumentException * If any of the method parameters are null */ public void marshal( Object jaxbElement, javax.xml.transform.Result result )
*** 393,403 **** * If any unexpected problem occurs during the marshalling. * @throws MarshalException * If the {@link ValidationEventHandler ValidationEventHandler} * returns false from its {@code handleEvent} method or the * {@code Marshaller} is unable to marshal {@code jaxbElement} (or any ! * object reachable from {@code jaxbElement}). See <a href="{@docRoot}/javax/xml/bind/Marshaller.html#elementMarshalling"> * Marshalling a JAXB element</a>. * @throws IllegalArgumentException * If any of the method parameters are null */ public void marshal( Object jaxbElement, java.io.OutputStream os ) --- 393,403 ---- * If any unexpected problem occurs during the marshalling. * @throws MarshalException * If the {@link ValidationEventHandler ValidationEventHandler} * returns false from its {@code handleEvent} method or the * {@code Marshaller} is unable to marshal {@code jaxbElement} (or any ! * object reachable from {@code jaxbElement}). See <a href="{@docRoot}/java/xml/bind/Marshaller.html#elementMarshalling"> * Marshalling a JAXB element</a>. * @throws IllegalArgumentException * If any of the method parameters are null */ public void marshal( Object jaxbElement, java.io.OutputStream os )
*** 415,425 **** * If any unexpected problem occurs during the marshalling. * @throws MarshalException * If the {@link ValidationEventHandler ValidationEventHandler} * returns false from its {@code handleEvent} method or the * {@code Marshaller} is unable to marshal {@code jaxbElement} (or any ! * object reachable from {@code jaxbElement}). See <a href="{@docRoot}/javax/xml/bind/Marshaller.html#elementMarshalling"> * Marshalling a JAXB element</a>. * @throws IllegalArgumentException * If any of the method parameters are null * @since 1.6, JAXB 2.1 */ --- 415,425 ---- * If any unexpected problem occurs during the marshalling. * @throws MarshalException * If the {@link ValidationEventHandler ValidationEventHandler} * returns false from its {@code handleEvent} method or the * {@code Marshaller} is unable to marshal {@code jaxbElement} (or any ! * object reachable from {@code jaxbElement}). See <a href="{@docRoot}/java/xml/bind/Marshaller.html#elementMarshalling"> * Marshalling a JAXB element</a>. * @throws IllegalArgumentException * If any of the method parameters are null * @since 1.6, JAXB 2.1 */
*** 438,448 **** * If any unexpected problem occurs during the marshalling. * @throws MarshalException * If the {@link ValidationEventHandler ValidationEventHandler} * returns false from its {@code handleEvent} method or the * {@code Marshaller} is unable to marshal {@code jaxbElement} (or any ! * object reachable from {@code jaxbElement}). See <a href="{@docRoot}/javax/xml/bind/Marshaller.html#elementMarshalling"> * Marshalling a JAXB element</a>. * @throws IllegalArgumentException * If any of the method parameters are null */ public void marshal( Object jaxbElement, java.io.Writer writer ) --- 438,448 ---- * If any unexpected problem occurs during the marshalling. * @throws MarshalException * If the {@link ValidationEventHandler ValidationEventHandler} * returns false from its {@code handleEvent} method or the * {@code Marshaller} is unable to marshal {@code jaxbElement} (or any ! * object reachable from {@code jaxbElement}). See <a href="{@docRoot}/java/xml/bind/Marshaller.html#elementMarshalling"> * Marshalling a JAXB element</a>. * @throws IllegalArgumentException * If any of the method parameters are null */ public void marshal( Object jaxbElement, java.io.Writer writer )
*** 460,470 **** * If any unexpected problem occurs during the marshalling. * @throws MarshalException * If the {@link ValidationEventHandler ValidationEventHandler} * returns false from its {@code handleEvent} method or the * {@code Marshaller} is unable to marshal {@code jaxbElement} (or any ! * object reachable from {@code jaxbElement}). See <a href="{@docRoot}/javax/xml/bind/Marshaller.html#elementMarshalling"> * Marshalling a JAXB element</a>. * @throws IllegalArgumentException * If any of the method parameters are null */ public void marshal( Object jaxbElement, org.xml.sax.ContentHandler handler ) --- 460,470 ---- * If any unexpected problem occurs during the marshalling. * @throws MarshalException * If the {@link ValidationEventHandler ValidationEventHandler} * returns false from its {@code handleEvent} method or the * {@code Marshaller} is unable to marshal {@code jaxbElement} (or any ! * object reachable from {@code jaxbElement}). See <a href="{@docRoot}/java/xml/bind/Marshaller.html#elementMarshalling"> * Marshalling a JAXB element</a>. * @throws IllegalArgumentException * If any of the method parameters are null */ public void marshal( Object jaxbElement, org.xml.sax.ContentHandler handler )
*** 486,496 **** * If any unexpected problem occurs during the marshalling. * @throws MarshalException * If the {@link ValidationEventHandler ValidationEventHandler} * returns false from its {@code handleEvent} method or the * {@code Marshaller} is unable to marshal {@code jaxbElement} (or any ! * object reachable from {@code jaxbElement}). See <a href="{@docRoot}/javax/xml/bind/Marshaller.html#elementMarshalling"> * Marshalling a JAXB element</a>. * @throws IllegalArgumentException * If any of the method parameters are null */ public void marshal( Object jaxbElement, org.w3c.dom.Node node ) --- 486,496 ---- * If any unexpected problem occurs during the marshalling. * @throws MarshalException * If the {@link ValidationEventHandler ValidationEventHandler} * returns false from its {@code handleEvent} method or the * {@code Marshaller} is unable to marshal {@code jaxbElement} (or any ! * object reachable from {@code jaxbElement}). See <a href="{@docRoot}/java/xml/bind/Marshaller.html#elementMarshalling"> * Marshalling a JAXB element</a>. * @throws IllegalArgumentException * If any of the method parameters are null */ public void marshal( Object jaxbElement, org.w3c.dom.Node node )
*** 509,519 **** * If any unexpected problem occurs during the marshalling. * @throws MarshalException * If the {@link ValidationEventHandler ValidationEventHandler} * returns false from its {@code handleEvent} method or the * {@code Marshaller} is unable to marshal {@code jaxbElement} (or any ! * object reachable from {@code jaxbElement}). See <a href="{@docRoot}/javax/xml/bind/Marshaller.html#elementMarshalling"> * Marshalling a JAXB element</a>. * @throws IllegalArgumentException * If any of the method parameters are null * @since 1.6, JAXB 2.0 */ --- 509,519 ---- * If any unexpected problem occurs during the marshalling. * @throws MarshalException * If the {@link ValidationEventHandler ValidationEventHandler} * returns false from its {@code handleEvent} method or the * {@code Marshaller} is unable to marshal {@code jaxbElement} (or any ! * object reachable from {@code jaxbElement}). See <a href="{@docRoot}/java/xml/bind/Marshaller.html#elementMarshalling"> * Marshalling a JAXB element</a>. * @throws IllegalArgumentException * If any of the method parameters are null * @since 1.6, JAXB 2.0 */
*** 533,543 **** * If any unexpected problem occurs during the marshalling. * @throws MarshalException * If the {@link ValidationEventHandler ValidationEventHandler} * returns false from its {@code handleEvent} method or the * {@code Marshaller} is unable to marshal {@code jaxbElement} (or any ! * object reachable from {@code jaxbElement}). See <a href="{@docRoot}/javax/xml/bind/Marshaller.html#elementMarshalling"> * Marshalling a JAXB element</a>. * @throws IllegalArgumentException * If any of the method parameters are null * @since 1.6, JAXB 2.0 */ --- 533,543 ---- * If any unexpected problem occurs during the marshalling. * @throws MarshalException * If the {@link ValidationEventHandler ValidationEventHandler} * returns false from its {@code handleEvent} method or the * {@code Marshaller} is unable to marshal {@code jaxbElement} (or any ! * object reachable from {@code jaxbElement}). See <a href="{@docRoot}/java/xml/bind/Marshaller.html#elementMarshalling"> * Marshalling a JAXB element</a>. * @throws IllegalArgumentException * If any of the method parameters are null * @since 1.6, JAXB 2.0 */
*** 573,583 **** /** * Set the particular property in the underlying implementation of * {@code Marshaller}. This method can only be used to set one of * the standard JAXB defined properties above or a provider specific * property. Attempting to set an undefined property will result in ! * a PropertyException being thrown. See <a href="{@docRoot}/javax/xml/bind/Marshaller.html#supportedProps"> * Supported Properties</a>. * * @param name the name of the property to be set. This value can either * be specified using one of the constant fields or a user * supplied string. --- 573,583 ---- /** * Set the particular property in the underlying implementation of * {@code Marshaller}. This method can only be used to set one of * the standard JAXB defined properties above or a provider specific * property. Attempting to set an undefined property will result in ! * a PropertyException being thrown. See <a href="{@docRoot}/java/xml/bind/Marshaller.html#supportedProps"> * Supported Properties</a>. * * @param name the name of the property to be set. This value can either * be specified using one of the constant fields or a user * supplied string.
*** 594,604 **** /** * Get the particular property in the underlying implementation of * {@code Marshaller}. This method can only be used to get one of * the standard JAXB defined properties above or a provider specific * property. Attempting to get an undefined property will result in ! * a PropertyException being thrown. See <a href="{@docRoot}/javax/xml/bind/Marshaller.html#supportedProps"> * Supported Properties</a>. * * @param name the name of the property to retrieve * @return the value of the requested property * --- 594,604 ---- /** * Get the particular property in the underlying implementation of * {@code Marshaller}. This method can only be used to get one of * the standard JAXB defined properties above or a provider specific * property. Attempting to get an undefined property will result in ! * a PropertyException being thrown. See <a href="{@docRoot}/java/xml/bind/Marshaller.html#supportedProps"> * Supported Properties</a>. * * @param name the name of the property to retrieve * @return the value of the requested property *
< prev index next >