Class ClassTree.Node
java.lang.Object
org.codehaus.groovy.tools.groovydoc.ClassTree.Node
- Enclosing class:
- ClassTree
A node in an inheritance/extension tree.
If classDoc is non-null the node represents a documented
type (rendered as a link); otherwise it represents an external type
joining documented children to a common ancestor (rendered as plain
text using qualifiedName).
-
Method Summary
Modifier and TypeMethodDescriptionChildren in insertion order; callers typically sort before rendering.Returns the class doc for this node, ornullif this is an external (non-link) node.Returns the fully qualified name of this node's type.
-
Method Details
-
getQualifiedName
Returns the fully qualified name of this node's type. -
getClassDoc
Returns the class doc for this node, ornullif this is an external (non-link) node. -
getChildren
Children in insertion order; callers typically sort before rendering.
-