Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4288720

javadoc tool: @see link to constructor in inner class does not work

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: P4 P4
    • None
    • 1.2.0, 1.4.2
    • tools
    • 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?

            Unassigned Unassigned
            dkramersunw Douglas Kramer (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: