org.apache.jmeter.engine.util
Class DisabledComponentRemover
- HashTreeTraverser
public class DisabledComponentRemover
void | addNode(Object node, HashTree subTree) - The tree traverses itself depth-first, calling addNode for each object it
encounters as it goes.
|
void | processPath() - Process path is called when a leaf is reached.
|
void | subtractNode() - Indicates traversal has moved up a step, and the visitor should remove
the top node from its stack structure.
|
DisabledComponentRemover
public DisabledComponentRemover(HashTree tree)
addNode
public void addNode(Object node,
HashTree subTree)
The tree traverses itself depth-first, calling addNode for each object it
encounters as it goes. This is a callback method, and should not be
called except by a HashTree during traversal.
- addNode in interface HashTreeTraverser
node
- the node currently encounteredsubTree
- the HashTree under the node encountered
processPath
public void processPath()
Process path is called when a leaf is reached. If a visitor wishes to
generate Lists of path elements to each leaf, it should keep a Stack data
structure of nodes passed to it with addNode, and removing top items for
every
HashTreeTraverser.subtractNode()
call. This is a callback method, and should
not be called except by a HashTree during traversal.
- processPath in interface HashTreeTraverser
subtractNode
public void subtractNode()
Indicates traversal has moved up a step, and the visitor should remove
the top node from its stack structure. This is a callback method, and
should not be called except by a HashTree during traversal.
- subtractNode in interface HashTreeTraverser
Copyright © 1998-2010 Apache Software Foundation. All Rights Reserved.