public interface XMLChunkHandler
Modifier and Type | Method and Description |
---|---|
void |
handleChunkAfterChildHandler(List<QName> currentXPath,
QName handlerQName,
String xmlChunk,
QName childQName,
XMLChunkHandler childHandler)
Invoked if the end tag of an element, for which a child handler is registered is reached.
|
void |
handleChunkBeforChildHandler(List<QName> currentXPath,
QName handlerQName,
String xmlChunk,
QName childQName,
XMLChunkHandler childHandler)
Invoked if the start tag of an element, for which a child handler is registered
is reached.
|
void |
handleChunkEnd(List<QName> currentXPath,
QName handlerQName,
String xmlChunk)
Invoked if the end tag of the xml block/chunk is reached.
|
void |
handleChunkStart(List<QName> currentXPath,
QName handlerQName) |
void handleChunkEnd(List<QName> currentXPath, QName handlerQName, String xmlChunk)
currentXPath
- Xpath (QName Path) to the current element.handlerQName
- the handlerQName.xmlChunk
- the partialXml.void handleChunkBeforChildHandler(List<QName> currentXPath, QName handlerQName, String xmlChunk, QName childQName, XMLChunkHandler childHandler)
currentXPath
- Xpath (QName Path) to the current element.handlerQName
- the handlerQName.xmlChunk
- the xmlChunk.childQName
- the childQName.childHandler
- the childHandler.void handleChunkAfterChildHandler(List<QName> currentXPath, QName handlerQName, String xmlChunk, QName childQName, XMLChunkHandler childHandler)
currentXPath
- Xpath (QName Path) to the current element.handlerQName
- the handlerQName.xmlChunk
- the xmlChunk.childQName
- the childQName.childHandler
- the childHandler.Copyright © 2004–2017 52north.org. All rights reserved.