01: package jaxx.tools.jaxxcapture;
02:
03: public class PropertyNode extends AbstractContextNode {
04: private String property;
05:
06: public PropertyNode(String property) {
07: this .property = property;
08: }
09:
10: public String getProperty() {
11: return property;
12: }
13:
14: public String toString() {
15: return "Property[" + property + ", "
16: + java.util.Arrays.asList(getArguments()) + "]";
17: }
18: }
|