xuxiuxi
2017-07-17 e8b108bd133a2a3a2d9aef0cccf0353d2bd73c7e
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);
}