1 package com.thoughtworks.xstream.objecttree;
2
3 public interface ObjectTree {
4
5 void push(String fieldName);
6
7 void pop();
8
9 Object get();
10
11 Class type();
12
13 void set(Object value);
14
15 void create(Class type);
16
17 String[] fieldNames();
18
19 ObjectTree newStack(Object instance);
20
21 ObjectTree newStack(Class type);
22 }
This page was automatically generated by Maven