| java.lang.Object jdepend.swingui.PackageNode jdepend.swingui.AfferentNode
AfferentNode | public class AfferentNode extends PackageNode (Code) | | The AfferentNode class is a PackageNode for an
afferent Java package and its afferent packages.
author: Mike Clark author: Clarkware Consulting, Inc. |
Method Summary | |
protected Collection | getCoupledPackages() Returns the collection of Java packages coupled to the package
represented in this node. | protected PackageNode | makeNode(PackageNode parent, JavaPackage jPackage) Creates and returns a PackageNode with the specified
parent node and Java package.
Parameters: parent - Parent package node. Parameters: jPackage - Java package. | public String | toString() Returns the string representation of this node in it's current tree
context. |
AfferentNode | public AfferentNode(PackageNode parent, JavaPackage jPackage)(Code) | | Constructs an AfferentNode with the specified parent node
and afferent Java package.
Parameters: parent - Parent package node. Parameters: jPackage - Afferent Java package. |
getCoupledPackages | protected Collection getCoupledPackages()(Code) | | Returns the collection of Java packages coupled to the package
represented in this node.
Collection of coupled packages. |
makeNode | protected PackageNode makeNode(PackageNode parent, JavaPackage jPackage)(Code) | | Creates and returns a PackageNode with the specified
parent node and Java package.
Parameters: parent - Parent package node. Parameters: jPackage - Java package. A non-null PackageNode |
toString | public String toString()(Code) | | Returns the string representation of this node in it's current tree
context.
Node label. |
|
|