Package org.apache.jmeter.testelement
Interface TestElementTraverser
public interface TestElementTraverser
For traversing Test Elements, which contain property that can be other test
 elements, strings, collections, maps, objects
- 
Method SummaryModifier and TypeMethodDescriptionvoidNotification that a property is ending.voidendTestElement(org.apache.jmeter.testelement.TestElement el) Notification that the test element is now done.voidNotification that a property is starting.voidstartTestElement(org.apache.jmeter.testelement.TestElement el) Notification that a new test element is about to be traversed.
- 
Method Details- 
startTestElementvoid startTestElement(org.apache.jmeter.testelement.TestElement el) Notification that a new test element is about to be traversed.- Parameters:
- el- element to be traversed
 
- 
endTestElementvoid endTestElement(org.apache.jmeter.testelement.TestElement el) Notification that the test element is now done.- Parameters:
- el- element that was traversed
 
- 
startPropertyNotification that a property is starting. This could be a test element property or a Map property - depends on the context.- Parameters:
- key- property to be traversed
 
- 
endPropertyNotification that a property is ending. Again, this could be a test element or a Map property, depending on the context.- Parameters:
- key- property that was traversed
 
 
-