Package org.apache.jmeter.engine
Class PreCompiler
java.lang.Object
org.apache.jmeter.engine.PreCompiler
- All Implemented Interfaces:
- HashTreeTraverser
Class to replace function and variable references in the test tree.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidThe tree traverses itself depth-first, calling addNode for each object it encounters as it goes.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- 
PreCompilerpublic PreCompiler()
- 
PreCompilerpublic PreCompiler(boolean remote) 
 
- 
- 
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
 
- 
subtractNodepublic 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.- Specified by:
- subtractNodein interface- HashTreeTraverser
 
- 
processPathpublic 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 everyHashTreeTraverser.subtractNode()call. This is a callback method, and should not be called except by a HashTree during traversal.- Specified by:
- processPathin interface- HashTreeTraverser
 
- 
getClientSideVariables- Returns:
- the clientSideVariables
 
 
-