xuxiuxi
2017-08-01 e09e9f8a34cbc99a33dfa9ef1792b0025575c3a8
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();
 
}