| |
|
| java.lang.Object javax.xml.stream.util.EventReaderDelegate
EventReaderDelegate | public class EventReaderDelegate implements XMLEventReader(Code) | | This is the base class for deriving an XMLEventReader
filter.
This class is designed to sit between an XMLEventReader and an
application's XMLEventReader. By default each method
does nothing but call the corresponding method on the
parent interface.
version: 1.0 author: Copyright (c) 2003 by BEA Systems. All Rights Reserved. See Also: javax.xml.stream.XMLEventReader See Also: StreamReaderDelegate |
EventReaderDelegate | public EventReaderDelegate()(Code) | | Construct an empty filter with no parent.
|
EventReaderDelegate | public EventReaderDelegate(XMLEventReader reader)(Code) | | Construct an filter with the specified parent.
Parameters: reader - the parent |
getParent | public XMLEventReader getParent()(Code) | | Get the parent of this instance.
the parent or null if none is set |
hasNext | public boolean hasNext()(Code) | | |
remove | public void remove()(Code) | | |
setParent | public void setParent(XMLEventReader reader)(Code) | | Set the parent of this instance.
Parameters: reader - the new parent |
|
|
|