Javolution 6.0.0 java
javolution.xml.sax.SAX2ReaderImpl.Proxy Class Reference
Inheritance diagram for javolution.xml.sax.SAX2ReaderImpl.Proxy:
[legend]
Collaboration diagram for javolution.xml.sax.SAX2ReaderImpl.Proxy:
[legend]

Public Member Functions

 Proxy ()
 
void setDocumentLocator (Locator locator)
 
void startDocument () throws SAXException
 
void endDocument () throws SAXException
 
void startPrefixMapping (CharArray prefix, CharArray uri) throws SAXException
 
void endPrefixMapping (CharArray prefix) throws SAXException
 
void startElement (CharArray namespaceURI, CharArray localName, CharArray qName, javolution.xml.sax.Attributes atts) throws SAXException
 
void endElement (CharArray namespaceURI, CharArray localName, CharArray qName) throws SAXException
 
void characters (char ch[], int start, int length) throws SAXException
 
void ignorableWhitespace (char ch[], int start, int length) throws SAXException
 
void processingInstruction (CharArray target, CharArray data) throws SAXException
 
void skippedEntity (CharArray name) throws SAXException
 
int getLength ()
 
String getURI (int index)
 
String getLocalName (int index)
 
String getQName (int index)
 
String getType (int index)
 
String getValue (int index)
 
int getIndex (String uri, String localName)
 
int getIndex (String qName)
 
String getType (String uri, String localName)
 
String getType (String qName)
 
String getValue (String uri, String localName)
 
String getValue (String qName)
 
void startElement (CharArray uri, CharArray localName, CharArray qName, Attributes atts) throws SAXException
 
CharArray getType (CharSequence uri, CharSequence localName)
 
CharArray getType (CharSequence qName)
 
CharArray getValue (CharSequence uri, CharSequence localName)
 
CharArray getValue (CharSequence qName)
 
int getIndex (CharSequence uri, CharSequence localName)
 
int getIndex (CharSequence qName)
 

Private Attributes

ContentHandler _sax2Handler = DEFAULT_HANDLER
 
javolution.xml.sax.Attributes _attributes
 

Detailed Description

This class defines the proxy for content handler and attributes.

Definition at line 161 of file SAX2ReaderImpl.java.

Constructor & Destructor Documentation

◆ Proxy()

javolution.xml.sax.SAX2ReaderImpl.Proxy.Proxy ( )

Default constructor.

Definition at line 178 of file SAX2ReaderImpl.java.

178 {}

Member Function Documentation

◆ characters()

void javolution.xml.sax.SAX2ReaderImpl.Proxy.characters ( char  ch[],
int  start,
int  length 
) throws SAXException

Receives notification of character data.

Parameters
chthe characters from the XML document.
startthe start position in the array.
lengththe number of characters to read from the array.
Exceptions
org.xml.sax.SAXExceptionany SAX exception.

Implements javolution.xml.sax.ContentHandler.

Definition at line 224 of file SAX2ReaderImpl.java.

225  {
226  _sax2Handler.characters(ch, start, length);
227  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._sax2Handler, and javolution.xml.sax.ContentHandler.characters().

Here is the call graph for this function:

◆ endDocument()

void javolution.xml.sax.SAX2ReaderImpl.Proxy.endDocument ( ) throws SAXException

Receives notification of the end of a document.

Exceptions
org.xml.sax.SAXExceptionany SAX exception.

Implements javolution.xml.sax.ContentHandler.

Definition at line 191 of file SAX2ReaderImpl.java.

191  {
194  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._sax2Handler, javolution.xml.sax.SAX2ReaderImpl.DEFAULT_HANDLER, and javolution.xml.sax.ContentHandler.endDocument().

Here is the call graph for this function:

◆ endElement()

void javolution.xml.sax.SAX2ReaderImpl.Proxy.endElement ( CharArray  uri,
CharArray  localName,
CharArray  qName 
) throws SAXException

Receives notification of the end of an element.

Parameters
urithe namespace URI, or an empty character sequence if the element has no Namespace URI or if namespace processing is not being performed.
localNamethe local name (without prefix), or an empty character sequence if namespace processing is not being performed.
qNamethe qualified XML 1.0 name (with prefix), or an empty character sequence if qualified names are not available.
Exceptions
org.xml.sax.SAXExceptionany SAX exception.

Implements javolution.xml.sax.ContentHandler.

Definition at line 217 of file SAX2ReaderImpl.java.

218  {
219  _sax2Handler.endElement(namespaceURI.toString(),
220  localName.toString(), qName.toString());
221  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._sax2Handler, and javolution.xml.sax.ContentHandler.endElement().

Here is the call graph for this function:

◆ endPrefixMapping()

void javolution.xml.sax.SAX2ReaderImpl.Proxy.endPrefixMapping ( CharArray  prefix) throws SAXException

Ends the scope of a prefix-URI mapping.

Parameters
prefixthe prefix that was being mapping.
Exceptions
org.xml.sax.SAXExceptionany SAX exception.

Implements javolution.xml.sax.ContentHandler.

Definition at line 203 of file SAX2ReaderImpl.java.

203  {
204  _sax2Handler.endPrefixMapping(prefix.toString());
205  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._sax2Handler, and javolution.xml.sax.ContentHandler.endPrefixMapping().

Here is the call graph for this function:

◆ getIndex() [1/4]

int javolution.xml.sax.Attributes.getIndex ( CharSequence  qName)
inherited

Looks up the index of an attribute by XML 1.0 qualified name (convenience method). This method returns the index of the attribute whose name has the same character content as the specified qName.

Parameters
qNamethe qualified (prefixed) name.
Returns
the index of the attribute, or -1 if it does not appear in the list.

Implemented in javolution.xml.internal.stream.AttributesImpl.

◆ getIndex() [2/4]

int javolution.xml.sax.Attributes.getIndex ( CharSequence  uri,
CharSequence  localName 
)
inherited

Looks up the index of an attribute by namespace name (convenience method). This method returns the index of the attribute whose uri/localName have the same character content as the specified uri/localName.

Parameters
urithe Namespace URI, or an empty character sequence if the name has no Namespace URI.
localNamethe attribute's local name.
Returns
the index of the attribute, or -1 if it does not appear in the list.

Implemented in javolution.xml.internal.stream.AttributesImpl.

◆ getIndex() [3/4]

int javolution.xml.sax.SAX2ReaderImpl.Proxy.getIndex ( String  qName)

Definition at line 294 of file SAX2ReaderImpl.java.

294  {
295  return (qName != null && _attributes != null ? _attributes
296  .getIndex(toCharSequence(qName)) : -1);
297  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._attributes, javolution.xml.sax.SAX2ReaderImpl.Proxy.getIndex(), and javolution.xml.sax.SAX2ReaderImpl.toCharSequence().

Here is the call graph for this function:

◆ getIndex() [4/4]

int javolution.xml.sax.SAX2ReaderImpl.Proxy.getIndex ( String  uri,
String  localName 
)

Definition at line 287 of file SAX2ReaderImpl.java.

287  {
288  return (uri != null && localName != null && _attributes != null ? _attributes
289  .getIndex(toCharSequence(uri), toCharSequence(localName))
290  : -1);
291  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._attributes, and javolution.xml.sax.SAX2ReaderImpl.toCharSequence().

Referenced by javolution.xml.sax.SAX2ReaderImpl.Proxy.getIndex().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getLength()

int javolution.xml.sax.SAX2ReaderImpl.Proxy.getLength ( )

Returns the number of attributes in this list of attributes.

Returns
the number of attributes.

Implements javolution.xml.sax.Attributes.

Definition at line 248 of file SAX2ReaderImpl.java.

248  {
249  return (_attributes != null ? _attributes.getLength() : 0);
250  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._attributes, and javolution.xml.sax.Attributes.getLength().

Here is the call graph for this function:

◆ getLocalName()

String javolution.xml.sax.SAX2ReaderImpl.Proxy.getLocalName ( int  index)

Looks up an attribute's local name by index.

Parameters
indexthe attribute index (zero-based).
Returns
the local name, or an empty character sequence if Namespace processing is not being performed, or null if the index is out of range.
See also
getLength

Implements javolution.xml.sax.Attributes.

Definition at line 260 of file SAX2ReaderImpl.java.

260  {
261  CharSequence chars = (_attributes != null ? _attributes
262  .getLocalName(index) : null);
263  return (chars != null ? chars.toString() : "");
264  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._attributes, and javolution.xml.sax.Attributes.getLocalName().

Here is the call graph for this function:

◆ getQName()

String javolution.xml.sax.SAX2ReaderImpl.Proxy.getQName ( int  index)

Looks up an attribute's XML 1.0 qualified name by index.

Parameters
indexthe attribute index (zero-based).
Returns
the XML 1.0 qualified name, or an empty character sequence if none is available, or null if the index is out of range.
See also
getLength

Implements javolution.xml.sax.Attributes.

Definition at line 267 of file SAX2ReaderImpl.java.

267  {
268  CharSequence chars = (_attributes != null ? _attributes
269  .getQName(index) : null);
270  return (chars != null ? chars.toString() : "");
271  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._attributes, and javolution.xml.sax.Attributes.getQName().

Here is the call graph for this function:

◆ getType() [1/5]

CharArray javolution.xml.sax.Attributes.getType ( CharSequence  qName)
inherited

Looks up an attribute's type by XML 1.0 qualified name. This method returns the type of the attribute whose qName has the same character content as the specified qName.

Parameters
qNameThe XML 1.0 qualified name.
Returns
the attribute type as a string, or null if the attribute is not in the list or if qualified names are not available.

Implemented in javolution.xml.internal.stream.AttributesImpl.

◆ getType() [2/5]

CharArray javolution.xml.sax.Attributes.getType ( CharSequence  uri,
CharSequence  localName 
)
inherited

Looks up an attribute's type by Namespace name (convenience method). This method returns the type of the attribute whose uri/localName have the same character content as the specified uri/localName.

Parameters
urithe Namespace URI, or an empty string if the name has no Namespace URI.
localNamethe local name of the attribute.
Returns
the attribute type as a string, or null if the attribute is not in the list or if Namespace processing is not being performed.

Implemented in javolution.xml.internal.stream.AttributesImpl.

◆ getType() [3/5]

String javolution.xml.sax.SAX2ReaderImpl.Proxy.getType ( int  index)

Looks up an attribute's type by index.

The attribute type is one of the strings "CDATA", "ID", "IDREF", "IDREFS", "NMTOKEN", "NMTOKENS", "ENTITY", "ENTITIES", or "NOTATION" (always in upper case).

If the parser has not read a declaration for the attribute, or if the parser does not report attribute types, then it must return the value "CDATA" as stated in the XML 1.0 Recommentation (clause 3.3.3, "Attribute-TextBuilder Normalization").

For an enumerated attribute that is not a notation, the parser will report the type as "NMTOKEN".

Parameters
indexthe attribute index (zero-based).
Returns
the attribute's type as a string, or null if the index is out of range.
See also
getLength

Implements javolution.xml.sax.Attributes.

Definition at line 274 of file SAX2ReaderImpl.java.

274  {
275  return (_attributes != null ? _attributes.getType(index).toString()
276  : null);
277  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._attributes, javolution.xml.sax.Attributes.getType(), and javolution.text.CharArray.toString().

Referenced by javolution.xml.sax.SAX2ReaderImpl.Proxy.getType().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getType() [4/5]

String javolution.xml.sax.SAX2ReaderImpl.Proxy.getType ( String  qName)

Definition at line 307 of file SAX2ReaderImpl.java.

307  {
308  return (qName != null && _attributes != null ? _attributes.getType(
309  toCharSequence(qName)).toString() : null);
310  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._attributes, javolution.xml.sax.Attributes.getType(), and javolution.xml.sax.SAX2ReaderImpl.toCharSequence().

Here is the call graph for this function:

◆ getType() [5/5]

String javolution.xml.sax.SAX2ReaderImpl.Proxy.getType ( String  uri,
String  localName 
)

Definition at line 300 of file SAX2ReaderImpl.java.

300  {
301  return (uri != null && localName != null && _attributes != null ? _attributes
302  .getType(toCharSequence(uri), toCharSequence(localName))
303  .toString() : null);
304  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._attributes, javolution.xml.sax.SAX2ReaderImpl.Proxy.getType(), and javolution.xml.sax.SAX2ReaderImpl.toCharSequence().

Here is the call graph for this function:

◆ getURI()

String javolution.xml.sax.SAX2ReaderImpl.Proxy.getURI ( int  index)

Looks up an attribute's Namespace URI by index.

Parameters
indexthe attribute index (zero-based).
Returns
the Namespace URI, or an empty character sequence if none is available, or null if the index is out of range.
See also
getLength

Implements javolution.xml.sax.Attributes.

Definition at line 253 of file SAX2ReaderImpl.java.

253  {
254  CharSequence chars = (_attributes != null ? _attributes
255  .getURI(index) : null);
256  return (chars != null ? chars.toString() : "");
257  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._attributes, and javolution.xml.sax.Attributes.getURI().

Here is the call graph for this function:

◆ getValue() [1/5]

CharArray javolution.xml.sax.Attributes.getValue ( CharSequence  qName)
inherited

Looks up an attribute's value by XML 1.0 qualified name (convenience method). This method returns the value of the attribute whose qName has the same character content as the specified qName.

Parameters
qNameThe XML 1.0 qualified name.
Returns
the attribute value as a character sequence, or null if the attribute is not in the list or if qualified names are not available.

Implemented in javolution.xml.internal.stream.AttributesImpl.

◆ getValue() [2/5]

CharArray javolution.xml.sax.Attributes.getValue ( CharSequence  uri,
CharSequence  localName 
)
inherited

Looks up an attribute's value by Namespace name (convenience method). This method returns the value of the attribute whose uri/localName have the same character content as the specified uri/localName.

Parameters
urithe Namespace URI, or the empty string if the name has no Namespace URI.
localNamethe local name of the attribute.
Returns
the attribute value as a character sequence, or null if the attribute is not in the list.

Implemented in javolution.xml.internal.stream.AttributesImpl.

◆ getValue() [3/5]

String javolution.xml.sax.SAX2ReaderImpl.Proxy.getValue ( int  index)

Looks up an attribute's value by index.

If the attribute value is a list of tokens (IDREFS, ENTITIES, or NMTOKENS), the tokens will be concatenated into a single string with each token separated by a single space.

Parameters
indexthe attribute index (zero-based).
Returns
the attribute's value as a character sequence, null if the index is out of range.
See also
getLength

Implements javolution.xml.sax.Attributes.

Definition at line 280 of file SAX2ReaderImpl.java.

280  {
281  CharSequence chars = (_attributes != null ? _attributes
282  .getValue(index) : null);
283  return (chars != null ? chars.toString() : null);
284  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._attributes, and javolution.xml.sax.Attributes.getValue().

Referenced by javolution.xml.sax.SAX2ReaderImpl.Proxy.getValue().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getValue() [4/5]

String javolution.xml.sax.SAX2ReaderImpl.Proxy.getValue ( String  qName)

Definition at line 324 of file SAX2ReaderImpl.java.

324  {
325  return (qName != null && _attributes != null ? _attributes
326  .getValue(toCharSequence(qName)).toString() : null);
327  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._attributes, javolution.xml.sax.SAX2ReaderImpl.Proxy.getValue(), and javolution.xml.sax.SAX2ReaderImpl.toCharSequence().

Here is the call graph for this function:

◆ getValue() [5/5]

String javolution.xml.sax.SAX2ReaderImpl.Proxy.getValue ( String  uri,
String  localName 
)

Definition at line 313 of file SAX2ReaderImpl.java.

313  {
314  return (uri != null
315  && localName != null
316  && _attributes != null
318  toCharSequence(localName)) != null ? _attributes
319  .getValue(toCharSequence(uri), toCharSequence(localName))
320  .toString() : null);
321  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._attributes, javolution.xml.sax.Attributes.getValue(), javolution.xml.sax.SAX2ReaderImpl.Proxy.getValue(), and javolution.xml.sax.SAX2ReaderImpl.toCharSequence().

Here is the call graph for this function:

◆ ignorableWhitespace()

void javolution.xml.sax.SAX2ReaderImpl.Proxy.ignorableWhitespace ( char  ch[],
int  start,
int  length 
) throws SAXException

Receives notification of ignorable whitespace in element content.

Parameters
chthe characters from the XML document.
startthe start position in the array.
lengththe number of characters to read from the array.
Exceptions
org.xml.sax.SAXExceptionany SAX exception.

Implements javolution.xml.sax.ContentHandler.

Definition at line 230 of file SAX2ReaderImpl.java.

231  {
232  _sax2Handler.ignorableWhitespace(ch, start, length);
233  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._sax2Handler, and javolution.xml.sax.ContentHandler.ignorableWhitespace().

Here is the call graph for this function:

◆ processingInstruction()

void javolution.xml.sax.SAX2ReaderImpl.Proxy.processingInstruction ( CharArray  target,
CharArray  data 
) throws SAXException

Receives notification of a processing instruction.

Parameters
targetthe processing instruction target.
datathe processing instruction data, or null if none was supplied. The data does not include any whitespace separating it from the target.
Exceptions
org.xml.sax.SAXExceptionany SAX exception.

Implements javolution.xml.sax.ContentHandler.

Definition at line 236 of file SAX2ReaderImpl.java.

237  {
238  _sax2Handler.processingInstruction(target.toString(),
239  data.toString());
240  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._sax2Handler, and javolution.xml.sax.ContentHandler.processingInstruction().

Here is the call graph for this function:

◆ setDocumentLocator()

void javolution.xml.sax.SAX2ReaderImpl.Proxy.setDocumentLocator ( Locator  locator)

Receives an object for locating the origin of SAX document events.

Parameters
locatorthe document locator.

Implements javolution.xml.sax.ContentHandler.

Definition at line 181 of file SAX2ReaderImpl.java.

181  {
183  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._sax2Handler, and javolution.xml.sax.ContentHandler.setDocumentLocator().

Here is the call graph for this function:

◆ skippedEntity()

void javolution.xml.sax.SAX2ReaderImpl.Proxy.skippedEntity ( CharArray  name) throws SAXException

Receives notification of a skipped entity.

Parameters
namethe name of the skipped entity. If it is a parameter entity, the name will begin with '', and if it is the external DTD subset, it will be the character sequence "[dtd]".
Exceptions
org.xml.sax.SAXExceptionany SAX exception.

Implements javolution.xml.sax.ContentHandler.

Definition at line 243 of file SAX2ReaderImpl.java.

243  {
244  _sax2Handler.skippedEntity(name.toString());
245  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._sax2Handler, and javolution.xml.sax.ContentHandler.skippedEntity().

Here is the call graph for this function:

◆ startDocument()

void javolution.xml.sax.SAX2ReaderImpl.Proxy.startDocument ( ) throws SAXException

Receives notification of the beginning of a document.

Exceptions
org.xml.sax.SAXExceptionany SAX exception.

Implements javolution.xml.sax.ContentHandler.

Definition at line 186 of file SAX2ReaderImpl.java.

186  {
188  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._sax2Handler, and javolution.xml.sax.ContentHandler.startDocument().

Here is the call graph for this function:

◆ startElement() [1/2]

void javolution.xml.sax.SAX2ReaderImpl.Proxy.startElement ( CharArray  namespaceURI,
CharArray  localName,
CharArray  qName,
javolution.xml.sax.Attributes  atts 
) throws SAXException

Definition at line 208 of file SAX2ReaderImpl.java.

210  {
211  _attributes = atts;
212  _sax2Handler.startElement(namespaceURI.toString(),
213  localName.toString(), qName.toString(), this);
214  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._attributes, javolution.xml.sax.SAX2ReaderImpl.Proxy._sax2Handler, and javolution.xml.sax.ContentHandler.startElement().

Here is the call graph for this function:

◆ startElement() [2/2]

void javolution.xml.sax.ContentHandler.startElement ( CharArray  uri,
CharArray  localName,
CharArray  qName,
Attributes  atts 
) throws SAXException
inherited

Receives notification of the beginning of an element.

Parameters
urithe namespace URI, or an empty character sequence if the element has no Namespace URI or if namespace processing is not being performed.
localNamethe local name (without prefix), or an empty character sequence if namespace processing is not being performed.
qNamethe qualified name (with prefix), or an empty character sequence if qualified names are not available.
attsthe attributes attached to the element. If there are no attributes, it shall be an empty Attributes object.
Exceptions
org.xml.sax.SAXExceptionany SAX exception.

Implemented in javolution.xml.sax.DefaultHandler.

Referenced by javolution.xml.sax.XMLReaderImpl.parseAll(), and javolution.xml.sax.SAX2ReaderImpl.Proxy.startElement().

Here is the caller graph for this function:

◆ startPrefixMapping()

void javolution.xml.sax.SAX2ReaderImpl.Proxy.startPrefixMapping ( CharArray  prefix,
CharArray  uri 
) throws SAXException

Begins the scope of a prefix-URI Namespace mapping.

Parameters
prefixthe Namespace prefix being declared.
urithe namespace URI the prefix is mapped to.
Exceptions
org.xml.sax.SAXExceptionany SAX exception.

Implements javolution.xml.sax.ContentHandler.

Definition at line 197 of file SAX2ReaderImpl.java.

198  {
199  _sax2Handler.startPrefixMapping(prefix.toString(), uri.toString());
200  }

References javolution.xml.sax.SAX2ReaderImpl.Proxy._sax2Handler, and javolution.xml.sax.ContentHandler.startPrefixMapping().

Here is the call graph for this function:

Member Data Documentation

◆ _attributes

◆ _sax2Handler


The documentation for this class was generated from the following file:
javolution.xml.sax.ContentHandler.startDocument
void startDocument()
javolution.xml.sax.ContentHandler.startPrefixMapping
void startPrefixMapping(CharArray prefix, CharArray uri)
javolution.xml.sax.SAX2ReaderImpl.Proxy.getValue
String getValue(int index)
Definition: SAX2ReaderImpl.java:280
javolution.xml.sax.Attributes.getQName
CharArray getQName(int index)
javolution.xml.sax.SAX2ReaderImpl.toCharSequence
static CharSequence toCharSequence(Object obj)
Definition: SAX2ReaderImpl.java:381
javolution.xml.sax.ContentHandler.startElement
void startElement(CharArray uri, CharArray localName, CharArray qName, Attributes atts)
javolution.xml.sax.ContentHandler.ignorableWhitespace
void ignorableWhitespace(char ch[], int start, int length)
javolution.xml.sax.ContentHandler.endElement
void endElement(CharArray uri, CharArray localName, CharArray qName)
javolution.xml.sax.Attributes.getLength
int getLength()
javolution.xml.sax.ContentHandler.characters
void characters(char ch[], int start, int length)
javolution.xml.sax.Attributes.getValue
CharArray getValue(int index)
javolution.xml.sax.ContentHandler.endPrefixMapping
void endPrefixMapping(CharArray prefix)
javolution.xml.sax.ContentHandler.setDocumentLocator
void setDocumentLocator(Locator locator)
javolution.text.CharArray.toString
String toString()
Definition: CharArray.java:175
javolution.xml.sax.SAX2ReaderImpl.Proxy._attributes
javolution.xml.sax.Attributes _attributes
Definition: SAX2ReaderImpl.java:173
javolution.xml.sax.ContentHandler.processingInstruction
void processingInstruction(CharArray target, CharArray data)
javolution.xml.sax.Attributes.getURI
CharArray getURI(int index)
javolution.xml.sax.SAX2ReaderImpl.Proxy.getIndex
int getIndex(String uri, String localName)
Definition: SAX2ReaderImpl.java:287
javolution.xml.sax.SAX2ReaderImpl.Proxy._sax2Handler
ContentHandler _sax2Handler
Definition: SAX2ReaderImpl.java:167
javolution.xml.sax.SAX2ReaderImpl.Proxy.getType
String getType(int index)
Definition: SAX2ReaderImpl.java:274
javolution.xml.sax.Attributes.getLocalName
CharArray getLocalName(int index)
javolution.xml.sax.Attributes.getType
CharArray getType(int index)
javolution.xml.sax.ContentHandler.endDocument
void endDocument()
javolution.xml.sax.SAX2ReaderImpl.DEFAULT_HANDLER
static Sax2DefaultHandler DEFAULT_HANDLER
Definition: SAX2ReaderImpl.java:48
javolution.xml.sax.ContentHandler.skippedEntity
void skippedEntity(CharArray name)