1

I have the following function:

/**
 * @param parent    ...
 * @param key   ...
 * @param isRed ...
 * ...
 */
public redBlackNode(redBlackNode parent, int key, boolean isRed) {
    ...

}

I can't see it (or anything else that I documented) in my Javadoc. What might be the cause of this?

paradigmatic
  • 40,153
  • 18
  • 88
  • 147
  • Can you clarify what you mean by not seeing anything? Do you mean when you generate the HTML version? or when you hover over the function or a call to it in the IDE? – Uri Apr 08 '09 at 23:01
  • the javadoc basically looks like i didnt include the /## ... #/ block. –  Apr 08 '09 at 23:06
  • Looks on the web, or looks when you hover in the IDE? It is supposed to the stars. But do you see the text that isn't parameters? – Uri Apr 08 '09 at 23:11
  • when i hover over the function name in the ide i can the the documentation that ive written, but the html javadoc does not contain any of my comments. –  Apr 08 '09 at 23:14
  • by comments i mean the stuff ive written inside the /** */ block. –  Apr 08 '09 at 23:15
  • Can you mail me your file? And how do you generate the HTML? (udekel@cs.cmu.edu) – Uri Apr 08 '09 at 23:23

2 Answers2

3

Try running javadoc with the -verbose flag. Maybe there is an error or warning occurring that you're not seeing.

Andy White
  • 86,444
  • 48
  • 176
  • 211
0

Are you just hovering? If you want to see JavaDocs for a symbol, press Ctrl+Q.

Seph
  • 328
  • 2
  • 4