xuxiuxi
2017-07-21 81eae13b546c2efd43ed2169dae8fccd9e0e1177
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.awsle.aibatis.xml.engine.objecttree;
 
public interface ObjectTree {
 
    void push(String fieldName);
 
    void pop();
 
    Object get();
 
    Class type();
 
    void set(Object value);
 
    void create(Class type);
 
    String[] fieldNames();
 
    ObjectTree newStack(Object instance);
 
    ObjectTree newStack(Class type);
}