|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object | +--superwaba.ext.xplat.webservice.XmlRpcContentHandler
Methods here are called by the xml parser used in XmlRpcClient
| Field Summary | |
boolean |
faultOccured
Tells if a fault occurred during parsing |
java.lang.Object |
result
Gets the object unmarshalled from the last xml-rpc response parsing |
| Constructor Summary | |
XmlRpcContentHandler()
|
|
| Method Summary | |
void |
characters(java.lang.String chars)
Receive notification of character data. |
void |
comment(java.lang.String s)
Receive notification of comment data. |
void |
endElement(int tag)
Receive notification of the end of an element. |
void |
setDecryptor(BlowfishECB blow)
Sets the Blowfish object holding the proper decryption key. |
void |
startElement(int tag,
AttributeList atts)
Receive notification of the beginning of an element. |
| Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
| Field Detail |
public java.lang.Object result
public boolean faultOccured
| Constructor Detail |
public XmlRpcContentHandler()
| Method Detail |
public void setDecryptor(BlowfishECB blow)
blow - The Blowfish object used to decrypt incoming datapublic void comment(java.lang.String s)
The XMLReader will call this method to report each chunk of comments. This XMLReader implementation return all contiguous comment data in a single chunk.
s - The string of characters from the XML document.public void characters(java.lang.String chars)
The XMLReader will call this method to report each chunk of character data. This XMLReader implementation return all contiguous character data in a single chunk.
s - The string of characters from the XML document.public void endElement(int tag)
The XMLReader will invoke this method at the end of every
element in the XML document; there will be a corresponding
startElement event for every endElement
event (even when the element is empty).
tag - tag identifier for this element
public void startElement(int tag,
AttributeList atts)
The XmlReader will invoke this method at the beginning of every
element in the XML document; there will be a corresponding
endElement event for every startElement event
(even when the element is empty). All of the element's content will be
reported, in order, before the corresponding endElement
event.
tag - tag identifier for this elementatts - The attributes list attached to the element.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||