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 Summary
Modifier and TypeMethodDescriptionvoid
Notification that a property is ending.void
endTestElement
(org.apache.jmeter.testelement.TestElement el) Notification that the test element is now done.void
Notification that a property is starting.void
startTestElement
(org.apache.jmeter.testelement.TestElement el) Notification that a new test element is about to be traversed.
-
Method Details
-
startTestElement
void startTestElement(org.apache.jmeter.testelement.TestElement el) Notification that a new test element is about to be traversed.- Parameters:
el
- element to be traversed
-
endTestElement
void endTestElement(org.apache.jmeter.testelement.TestElement el) Notification that the test element is now done.- Parameters:
el
- element that was traversed
-
startProperty
Notification 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
-
endProperty
Notification 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
-