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);
| }
|
|