When you're adding javaDoc comments to your code and you're outlining the structure of an XML document that you're passing back, what's the best way to represent attributes? Is there a best practice for this?
My general structure for my javaDoc comments is like this:
/**
* ...
*
* @return XML document in the form:
*
* <pre>
* <ROOT_ELEMENT>
* <AN_ELEMENT>
* <MULTIPLE_ELEMENTS>*
* </ROOT_ELEMENT>
* </pre>
*/