--- old/src/java.xml.bind/share/classes/com/sun/xml/internal/txw2/annotation/XmlElement.java 2015-09-19 13:15:26.952752188 +0300 +++ new/src/java.xml.bind/share/classes/com/sun/xml/internal/txw2/annotation/XmlElement.java 2015-09-19 13:15:26.788751375 +0300 @@ -50,13 +50,13 @@ * The method signature has to match one of the following patterns. * *
- *
Child writer: TW foo()
+ *
Child writer: {@code TW foo()}
*
TW must be an interface derived from {@link TypedXmlWriter}. * When this method is called, a new child element is started, - * and its content can be written by using the returned TW + * and its content can be written by using the returned {@code TW} * object. This child element will be ended when its _commit method * is called. - *
Leaf element: void foo(DT1,DT2,...)
+ *
Leaf element: {@code void foo(DT1,DT2,...)}
*
DTi must be datatype objects. * When this method is called, a new child element is started, * followed by the whitespace-separated text data from each of