1 18 19 package org.apache.jmeter.testelement; 20 21 import org.apache.jmeter.testelement.property.JMeterProperty; 22 23 29 public interface TestElementTraverser 30 { 31 32 36 public void startTestElement(TestElement el); 37 38 42 public void endTestElement(TestElement el); 43 44 49 public void startProperty(JMeterProperty key); 50 51 56 public void endProperty(JMeterProperty key); 57 58 } 59 | Popular Tags |