If I write <xmlElement> in a javadoc, it does not appear, because tags have special funcions on formatting texts.
How can I show this chars in a javadoc?
|
|
You can use |
||||
|
Recent versions of JavaDoc support {@literal A<B>C}; this outputs the content correctly (escaping the '<' and '>' in the generated HTML). See http://download.oracle.com/javase/1.5.0/docs/guide/javadoc/whatsnew-1.5.0.html |
|||
|
|
|
Escape them as HTML: |
|||
|
|
|
You only need to use the HTML equivalent for one of the angle brackets. The
<pre>
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
[...]
This displays as:
|
|||
|
|