| |
|
| java.lang.Object javax.xml.stream.util.StreamReaderDelegate
StreamReaderDelegate | public class StreamReaderDelegate implements XMLStreamReader(Code) | | This is the base class for deriving an XMLStreamReader filter
This class is designed to sit between an XMLStreamReader and an
application's XMLStreamReader. 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.XMLStreamReader See Also: EventReaderDelegate |
StreamReaderDelegate | public StreamReaderDelegate()(Code) | | Construct an empty filter with no parent.
|
StreamReaderDelegate | public StreamReaderDelegate(XMLStreamReader reader)(Code) | | Construct an filter with the specified parent.
Parameters: reader - the parent |
getAttributeCount | public int getAttributeCount()(Code) | | |
getAttributeLocalName | public String getAttributeLocalName(int index)(Code) | | |
getAttributeName | public QName getAttributeName(int index)(Code) | | |
getAttributeNamespace | public String getAttributeNamespace(int index)(Code) | | |
getAttributePrefix | public String getAttributePrefix(int index)(Code) | | |
getAttributeType | public String getAttributeType(int index)(Code) | | |
getAttributeValue | public String getAttributeValue(int index)(Code) | | |
getCharacterEncodingScheme | public String getCharacterEncodingScheme()(Code) | | |
getEventType | public int getEventType()(Code) | | |
getNamespaceCount | public int getNamespaceCount()(Code) | | |
getNamespacePrefix | public String getNamespacePrefix(int index)(Code) | | |
getNamespaceURI | public String getNamespaceURI(int index)(Code) | | |
getParent | public XMLStreamReader getParent()(Code) | | Get the parent of this instance.
the parent or null if none is set |
getTextCharacters | public int getTextCharacters(int sourceStart, char[] target, int targetStart, int length) throws XMLStreamException(Code) | | |
getTextCharacters | public char[] getTextCharacters()(Code) | | |
getTextLength | public int getTextLength()(Code) | | |
getTextStart | public int getTextStart()(Code) | | |
hasName | public boolean hasName()(Code) | | |
hasText | public boolean hasText()(Code) | | |
isAttributeSpecified | public boolean isAttributeSpecified(int index)(Code) | | |
isCharacters | public boolean isCharacters()(Code) | | |
isEndElement | public boolean isEndElement()(Code) | | |
isStandalone | public boolean isStandalone()(Code) | | |
isStartElement | public boolean isStartElement()(Code) | | |
isWhiteSpace | public boolean isWhiteSpace()(Code) | | |
setParent | public void setParent(XMLStreamReader reader)(Code) | | Set the parent of this instance.
Parameters: reader - the new parent |
standaloneSet | public boolean standaloneSet()(Code) | | |
|
|
|