Html code without be interpreted

Hi,

How can I write html code without be interpreted. I want to write a header like:

/**

*

* @param html A text like <div>hello</div>

*

**/

and I want that JavaDoc doen't interprets <div> as HTML.

How can I do it?

Thanks a lot for helping me :)

Cheers

[342 byte] By [JRubioa] at [2007-11-26 22:27:43]
# 1
Two options that I can think of:& lt;div& gt;hello& lt;/div& gt; (spaces were added so that the text is rendered){@literal <div>hello</div>} (if you are using java 1.5 or newer)
nikos.kyprianou@gmail.coma at 2007-7-10 11:30:24 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
Hi Nikos,The second option works fine!Thanks a lot for your time!Best regards!
JRubioa at 2007-7-10 11:30:24 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...