jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/txw2/annotation/XmlElement.java
changeset 32795 5a5710ee05a0
parent 25871 b80b84e87032
equal deleted inserted replaced
32712:f61a63b7d1e5 32795:5a5710ee05a0
    48  *
    48  *
    49  * <p>
    49  * <p>
    50  * The method signature has to match one of the following patterns.
    50  * The method signature has to match one of the following patterns.
    51  *
    51  *
    52  * <dl>
    52  * <dl>
    53  *  <dt>Child writer: <tt>TW foo()</tt></dt>
    53  *  <dt>Child writer: {@code TW foo()}</dt>
    54  *  <dd>TW must be an interface derived from {@link TypedXmlWriter}.
    54  *  <dd>TW must be an interface derived from {@link TypedXmlWriter}.
    55  *      When this method is called, a new child element is started,
    55  *      When this method is called, a new child element is started,
    56  *      and its content can be written by using the returned <tt>TW</tt>
    56  *      and its content can be written by using the returned {@code TW}
    57  *      object. This child element will be ended when its _commit method
    57  *      object. This child element will be ended when its _commit method
    58  *      is called.
    58  *      is called.
    59  *  <dt>Leaf element: <tt>void foo(DT1,DT2,...)</tt></dt>
    59  *  <dt>Leaf element: {@code void foo(DT1,DT2,...)}</dt>
    60  *  <dd>DTi must be datatype objects.
    60  *  <dd>DTi must be datatype objects.
    61  *      When this method is called, a new child element is started,
    61  *      When this method is called, a new child element is started,
    62  *      followed by the whitespace-separated text data from each of
    62  *      followed by the whitespace-separated text data from each of
    63  *      the datatype objects, followed by the end tag.
    63  *      the datatype objects, followed by the end tag.
    64  * </dl>
    64  * </dl>