Package org.apache.jmeter.testelement
Interface TestElementTraverser
-
public interface TestElementTraverserFor traversing Test Elements, which contain property that can be other test elements, strings, collections, maps, objects- Version:
- $Revision: 1649318 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidendProperty(JMeterProperty key)Notification that a property is ending.voidendTestElement(TestElement el)Notification that the test element is now done.voidstartProperty(JMeterProperty key)Notification that a property is starting.voidstartTestElement(TestElement el)Notification that a new test element is about to be traversed.
-
-
-
Method Detail
-
startTestElement
void startTestElement(TestElement el)
Notification that a new test element is about to be traversed.- Parameters:
el- element to be traversed
-
endTestElement
void endTestElement(TestElement el)
Notification that the test element is now done.- Parameters:
el- element that was traversed
-
startProperty
void startProperty(JMeterProperty key)
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
void endProperty(JMeterProperty key)
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
-
-