1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.awsle.aibatis.xml.engine.xml;
|
| //@TODO: Alter API to be pull-parser friendly.
|
| public interface XMLReader {
|
| String name();
|
| String text();
|
| String attribute(String name);
|
| int childCount();
|
| boolean childExists(String elementName);
|
| void child(int index);
|
| void child(String elementName);
|
| void pop();
|
| }
|
|