Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
2  
Related but not quite a dupe: stackoverflow.com/questions/1782040/… – Lord Torgamus May 24 '10 at 17:34

4 Answers

up vote 6 down vote accepted

You can use &lt; for < and &gt; for > .

share|improve this answer
1  
you can use the "code" button to format it &lt; – Tom Brito May 24 '10 at 17:42
or you could use &amp; to to escape the & – ILMTitan May 24 '10 at 21:26

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

share|improve this answer

Escape them as HTML: &lt; and &gt;

share|improve this answer
Did all the others in this thread get downvoted, or just mine? – duffymo May 4 '12 at 22:25

You only need to use the HTML equivalent for one of the angle brackets. The < can be represented as either &lt; or &#60;. Here's a sample taken from real Javadoc:

<pre>
&lt;complexType>
  &lt;complexContent>
    &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
      &lt;sequence>
      [...]

This displays as:

<complexType>
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.