Method | Description | |
---|---|---|
AttributeHandler ( |
Constructs a new SAXiTextHandler that will translate all the events triggered by the parser to actions on the
|
|
Characters ( string content, int start, int length ) : void |
This method gets called when characters are encountered.
|
|
EndElement ( String tag, String lname, String name ) : void |
This method gets called when an end tag is encountered.
|
|
IgnorableWhitespace ( char ch, int start, int length ) : void |
This method gets called when ignorable white space encountered.
|
|
StartElement ( String tag, String lname, String n, |
This method gets called when a start tag is encountered.
|
public AttributeHandler ( |
||
tagMap | A Hashtable containing XmlPeer-objects | |
return | System |
public Characters ( string content, int start, int length ) : void | ||
content | string | an array of characters |
start | int | the start position in the array |
length | int | the number of characters to read from the array |
return | void |
public EndElement ( String tag, String lname, String name ) : void | ||
tag | String | the name of the tag that ends |
lname | String | |
name | String | |
return | void |
public IgnorableWhitespace ( char ch, int start, int length ) : void | ||
ch | char | an array of characters |
start | int | the start position in the array |
length | int | the number of characters to read from the array |
return | void |
public StartElement ( String tag, String lname, String n, |
||
tag | String | the name of the tag that is encountered |
lname | String | |
n | String | |
attrs | the list of attributes | |
return | void |