메소드 | 설명 | |
---|---|---|
Convert ( Node, node ) : EventNode, |
This is used to convert the provided node in to an event. The conversion process ensures the node can be digested by the core reader and used to provide an
|
|
DocumentReader ( Document, document ) : System |
Constructor for the
|
|
Next ( ) : EventNode, |
This is used to take the next node from the document. This will scan through the document, ignoring any comments to find the next relevant XML event to acquire. Typically events will be the start and end of an element, as well as any text nodes.
|
|
Peek ( ) : EventNode, |
This is used to peek at the node from the document. This will scan through the document, ignoring any comments to find the next relevant XML event to acquire. Typically events will be the start and end of an element, as well as any text nodes.
|
|
Read ( ) : EventNode, |
This is used to read the next node from the document. This will scan through the document, ignoring any comments to find the next relevant XML event to acquire. Typically events will be the start and end of an element, as well as any text nodes.
|
|
Read ( Node, node ) : EventNode, |
This is used to read the next node from the document. This will scan through the document, ignoring any comments to find the next relevant XML event to acquire. Typically events will be the start and end of an element, as well as any text nodes.
|
|
Start ( Node, node ) : Start, |
This is used to convert the provided node to a start event. The conversion process ensures the node can be digested by the core reader and used to provide an
|
메소드 | 설명 | |
---|---|---|
Build ( ) : System | ||
Start ( node, node ) : System | ||
isEmpty ( ) : System |
public Convert ( Node, node ) : EventNode, | ||
node | Node, | /// the node that is to be converted to an event /// |
리턴 | EventNode, |
public DocumentReader ( Document, document ) : System | ||
document | Document, | /// this is the document that is to be read /// |
리턴 | System |
public Read ( Node, node ) : EventNode, | ||
node | Node, | /// this is the XML node that has been read /// |
리턴 | EventNode, |
public Start ( Node, node ) : Start, | ||
node | Node, | /// the node that is to be converted to a start event /// |
리턴 | Start, |