tags:

views:

86

answers:

2

so i have this function:

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

}

and i cant see it or anything else that i documented in my javadoc... can someone please help.

thanks!

+1  A: 

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

Andy White
A: 

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

Seph