|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
XMLReader.java | - | - | - | - |
|
1 |
package com.thoughtworks.xstream.xml;
|
|
2 |
|
|
3 |
//@TODO: Alter API to be pull-parser friendly.
|
|
4 |
|
|
5 |
public interface XMLReader { |
|
6 |
|
|
7 |
String name(); |
|
8 |
|
|
9 |
String text(); |
|
10 |
|
|
11 |
String attribute(String name); |
|
12 |
|
|
13 |
int childCount();
|
|
14 |
|
|
15 |
boolean childExists(String elementName);
|
|
16 |
|
|
17 |
void child(int index); |
|
18 |
|
|
19 |
void child(String elementName);
|
|
20 |
|
|
21 |
void pop();
|
|
22 |
|
|
23 |
} |
|
24 |
|
|