Display xml tag in comment using java doc
843810May 12 2004 — edited Jun 24 2004Hi,
I would like to display some comments on a method showing the xml segment that is related to the code.
E.g. Javadoc show:
MethodA
private void MethodA(java.lang.String name,)
Create list for current method with the following xml format:
<type id="RowT">
<name id="typeDefault"/>
</type>
How can I code it in the program :
/**
* Create list for current method with the following xml format:
* ???
<type id="RowT">
<name id="typeDefault"/>
</type>
*
* @param namejava.lang.String
*/
Thanks!
Tina