| |
|
| java.lang.Object jdepend.swingui.PackageNode jdepend.swingui.EfferentNode
EfferentNode | public class EfferentNode extends PackageNode (Code) | | The EfferentNode class is a PackageNode for an
efferent Java package and its efferent 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. | public boolean | isChild(JavaPackage jPackage) Indicates whether the specified package should be displayed as a child of
this node.
Efferent packages without classes are never shown at the root level to
exclude non-analyzed packages.
Parameters: jPackage - Package to test. | 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. |
EfferentNode | public EfferentNode(PackageNode parent, JavaPackage jPackage)(Code) | | Constructs an EfferentNode with the specified parent node
and efferent Java package.
Parameters: parent - Parent package node. Parameters: jPackage - Efferent 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. |
isChild | public boolean isChild(JavaPackage jPackage)(Code) | | Indicates whether the specified package should be displayed as a child of
this node.
Efferent packages without classes are never shown at the root level to
exclude non-analyzed packages.
Parameters: jPackage - Package to test. true to display the package; false otherwise. |
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. |
|
|
|