jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/txw2/output/DataWriter.java
changeset 32795 5a5710ee05a0
parent 25871 b80b84e87032
equal deleted inserted replaced
32712:f61a63b7d1e5 32795:5a5710ee05a0
    75  * w.endDocument();
    75  * w.endDocument();
    76  * </pre>
    76  * </pre>
    77  *
    77  *
    78  * <p>This code will produce the following document:</p>
    78  * <p>This code will produce the following document:</p>
    79  *
    79  *
    80  * <pre>
    80  * <pre>{@code
    81  * &lt;?xml version="1.0" standalone="yes"?>
    81  * <?xml version="1.0" standalone="yes"?>
    82  *
    82  *
    83  * &lt;Person>
    83  * <Person>
    84  *   &lt;name>Jane Smith&lt;/name>
    84  *   <name>Jane Smith</name>
    85  *   &lt;date-of-birth>1965-05-23&lt;/date-of-birth>
    85  *   <date-of-birth>1965-05-23</date-of-birth>
    86  *   &lt;citizenship>US&lt;/citizenship>
    86  *   <citizenship>US</citizenship>
    87  * &lt;/Person>
    87  * </Person>
    88  * </pre>
    88  * }</pre>
    89  *
    89  *
    90  * <p>This class inherits from {@link XMLWriter},
    90  * <p>This class inherits from {@link XMLWriter},
    91  * and provides all of the same support for Namespaces.</p>
    91  * and provides all of the same support for Namespaces.</p>
    92  *
    92  *
    93  * @since 1.0
    93  * @since 1.0