| org.apache.jmeter.testelement.TestElementTraverser
All known Subclasses: org.apache.jmeter.save.TestElementSaver,
TestElementTraverser | public interface TestElementTraverser (Code) | | For traversing Test Elements, which contain property that can be other test
elements, strings, collections, maps, objects
version: $Revision: 493779 $ on $Date: 2007-01-07 17:46:38 +0000 (Sun, 07 Jan 2007) $ |
endProperty | public void endProperty(JMeterProperty key)(Code) | | Notification that a property is ending. Again, this could be a test
element or a Map property, dependig on the context.
Parameters: key - |
endTestElement | public void endTestElement(TestElement el)(Code) | | Notification that the test element is now done.
Parameters: el - |
startProperty | public void startProperty(JMeterProperty key)(Code) | | Notification that a property is starting. This could be a test element
property or a Map property - depends on the context.
Parameters: key - |
startTestElement | public void startTestElement(TestElement el)(Code) | | Notification that a new test element is about to be traversed.
Parameters: el - |
|
|