Kieker 1.7

kieker.tools.traceAnalysis.filter.visualization.callTree
Class CallTreeNode

java.lang.Object
  extended by kieker.tools.traceAnalysis.filter.visualization.callTree.CallTreeNode

Deprecated. To be removed in Kieker 1.8.

@Deprecated
public class CallTreeNode
extends Object

This class represents a single node within the call tree.

Since:
1.1
Author:
Andre van Hoorn

Constructor Summary
CallTreeNode(CallTreeNode parent, CallTreeOperationHashKey opInfo)
          Deprecated. To be removed in Kieker 1.8.
 
Method Summary
 CallTreeNode createNewChild(AllocationComponent allocationComponent, Operation operation)
          Deprecated. Creates a new child and adds it to the nodes list of children.
 AllocationComponent getAllocationComponent()
          Deprecated. Delivers the allocation component stored within this node.
 CallTreeNode getChild(AllocationComponent allocationComponent, Operation operation)
          Deprecated. Returns the child node with given operation, name, and vmName.
 Collection<CallTreeNode> getChildren()
          Deprecated. Delivers a collection containing the child nodes.
 Operation getOperation()
          Deprecated. Delivers the operation stored within this node.
 CallTreeNode getParent()
          Deprecated. Delivers the parent of this node.
 boolean isRootNode()
          Deprecated. Tells whether the current node is the root or not.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CallTreeNode

@Deprecated
public CallTreeNode(CallTreeNode parent,
                               CallTreeOperationHashKey opInfo)
Deprecated. To be removed in Kieker 1.8.

Creates a new instance of this class using the given parameters.

Parameters:
parent - The parent of this node. If this is null, the node will be interpreted as a root node.
opInfo - The info to be stored in this node.
Method Detail

getChildren

public final Collection<CallTreeNode> getChildren()
Deprecated. 
Delivers a collection containing the child nodes.

Returns:
The children of this node.

createNewChild

public final CallTreeNode createNewChild(AllocationComponent allocationComponent,
                                         Operation operation)
Deprecated. 
Creates a new child and adds it to the nodes list of children.

Parameters:
allocationComponent - The allocation component used for the hash key within the new node.
operation - The operation used for the hash key within the new node.
Returns:
The newly created node.

getChild

public final CallTreeNode getChild(AllocationComponent allocationComponent,
                                   Operation operation)
Deprecated. 
Returns the child node with given operation, name, and vmName. The node is created if it doesn't exist.

Parameters:
allocationComponent - The allocation component which is used to find the node.
operation - The operation which is used to find the node.
Returns:
The corresponding node to the given parameters if it exists, a new node otherwise.

getAllocationComponent

public final AllocationComponent getAllocationComponent()
Deprecated. 
Delivers the allocation component stored within this node.

Returns:
The allocation component.

getOperation

public final Operation getOperation()
Deprecated. 
Delivers the operation stored within this node.

Returns:
The operation.

getParent

public final CallTreeNode getParent()
Deprecated. 
Delivers the parent of this node.

Returns:
The parent.

isRootNode

public final boolean isRootNode()
Deprecated. 
Tells whether the current node is the root or not.

Returns:
true if and only if this node should be interpreted as a root.

Kieker 1.7

Copyright 2013 Kieker Project, http://kieker-monitoring.net