-
Bug
-
Resolution: Cannot Reproduce
-
P4
-
None
-
1.2.0, 1.4.2
-
x86, sparc
-
linux, solaris_2.6
Javadoc 1.3 emits this warning:
javadoc: warning - javax.swing.JTree.DynamicUtilTreeNode.isLeaf(): Tag @see: can't find DynamicUtilTreeNode(Object, Object) in javax.swing.JTree.DynamicUtilTreeNode
However, I see nothing wrong with the @see construction:
/**
* Returns true if this node allows children. Whether the node
* allows children depends on how it was created.
*
* @return true if this node allows children, false otherwise.
* @see JTree.DynamicUtilTreeNode#DynamicUtilTreeNode(Object, Object)
*/
public boolean isLeaf() {
return !getAllowsChildren();
}
Where that constructor is declared as:
public DynamicUtilTreeNode(Object value, Object children) {
...
}
This produces the following "See Also", with no link:
See Also:
JTree.DynamicUtilTreeNode#DynamicUtilTreeNode(Object, Object)
Am I overlooking something?
javadoc: warning - javax.swing.JTree.DynamicUtilTreeNode.isLeaf(): Tag @see: can't find DynamicUtilTreeNode(Object, Object) in javax.swing.JTree.DynamicUtilTreeNode
However, I see nothing wrong with the @see construction:
/**
* Returns true if this node allows children. Whether the node
* allows children depends on how it was created.
*
* @return true if this node allows children, false otherwise.
* @see JTree.DynamicUtilTreeNode#DynamicUtilTreeNode(Object, Object)
*/
public boolean isLeaf() {
return !getAllowsChildren();
}
Where that constructor is declared as:
public DynamicUtilTreeNode(Object value, Object children) {
...
}
This produces the following "See Also", with no link:
See Also:
JTree.DynamicUtilTreeNode#DynamicUtilTreeNode(Object, Object)
Am I overlooking something?
- duplicates
-
JDK-5036073 @link and @see tags cannot find a constructor of a nested class
-
- Closed
-