Package org.apache.jmeter.engine
Class TreeCloner
java.lang.Object
org.apache.jmeter.engine.TreeCloner
- All Implemented Interfaces:
- HashTreeTraverser
- Direct Known Subclasses:
- TreeClonerForValidation,- TreeClonerNoTimer
Clones the test tree,  skipping test elements that implement 
NoThreadClone by default.- 
Constructor SummaryConstructorsConstructorDescriptionClone the test tree, honouring NoThreadClone markers.TreeCloner(boolean honourNoThreadClone) Clone the test tree.
- 
Method SummaryModifier and TypeMethodDescriptionfinal voidThe tree traverses itself depth-first, calling addNode for each object it encounters as it goes.protected ObjectaddNodeToTree(Object node) voidProcess path is called when a leaf is reached.voidIndicates traversal has moved up a step, and the visitor should remove the top node from its stack structure.
- 
Constructor Details- 
TreeClonerpublic TreeCloner()Clone the test tree, honouring NoThreadClone markers.
- 
TreeClonerpublic TreeCloner(boolean honourNoThreadClone) Clone the test tree.- Parameters:
- honourNoThreadClone- set false to clone NoThreadClone nodes as well
 
 
- 
- 
Method Details- 
addNodeThe 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.- Specified by:
- addNodein interface- HashTreeTraverser
- Parameters:
- node- the node currently encountered
- subTree- the HashTree under the node encountered
 
- 
addNodeToTree- Parameters:
- node- Node to add to tree or not
- Returns:
- Object node (clone or not)
 
- 
subtractNodepublic void subtractNode()Description copied from interface:HashTreeTraverserIndicates 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.- Specified by:
- subtractNodein interface- HashTreeTraverser
 
- 
getClonedTree
- 
processPathpublic void processPath()Description copied from interface:HashTreeTraverserProcess 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 everyHashTreeTraverser.subtractNode()call. This is a callback method, and should not be called except by a HashTree during traversal.- Specified by:
- processPathin interface- HashTreeTraverser
 
 
-