01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: *
17: */
18:
19: package org.apache.jmeter.testelement;
20:
21: import org.apache.jmeter.testelement.property.JMeterProperty;
22:
23: /**
24: * For traversing Test Elements, which contain property that can be other test
25: * elements, strings, collections, maps, objects
26: *
27: * @version $Revision: 493779 $ on $Date: 2007-01-07 17:46:38 +0000 (Sun, 07 Jan 2007) $
28: */
29: public interface TestElementTraverser {
30:
31: /**
32: * Notification that a new test element is about to be traversed.
33: *
34: * @param el
35: */
36: public void startTestElement(TestElement el);
37:
38: /**
39: * Notification that the test element is now done.
40: *
41: * @param el
42: */
43: public void endTestElement(TestElement el);
44:
45: /**
46: * Notification that a property is starting. This could be a test element
47: * property or a Map property - depends on the context.
48: *
49: * @param key
50: */
51: public void startProperty(JMeterProperty key);
52:
53: /**
54: * Notification that a property is ending. Again, this could be a test
55: * element or a Map property, dependig on the context.
56: *
57: * @param key
58: */
59: public void endProperty(JMeterProperty key);
60:
61: }
|