| java.lang.Object org.openlaszlo.remote.json.soap.encoding.SOAPDataEncoder
Field Summary | |
boolean | isProgram Workaround variable for bug 4680. |
Method Summary | |
public void | buildFromElements(Vector v, SOAPHeader h) Build from a vector of SOAPElement items. | public SOAPDataEncoder | buildFromException(Exception e) | public SOAPDataEncoder | buildFromFault(AxisFault fault) | public void | buildFromProgram(Object p, SOAPHeader h) Build from a vector of SOAPElement items. | public void | characters(char[] ch, int start, int length) | public void | characters(String text) | String | encodeArray(Object obj) | String | encodeObject(Object p) | public void | end() | public void | endDocument() | public void | endElement(String uri, String localName, String qName) | public void | endElement() | public void | endPrefixMapping(String prefix) End the scope of a prefix-URI mapping. | public InputStream | getInputStream() | public long | getSize() | public void | ignorableWhitespace(char[] ch, int start, int length) Receive notification of ignorable whitespace in element content. | public void | processingInstruction(String target, String data) Receive notification of a processing instruction. | public void | setDocumentLocator(Locator locator) Receive an object for locating the origin of SAX document events. | public void | skippedEntity(String name) Receive notification of a skipped entity. | public void | start() | public void | startDocument() | public void | startElement(String localName, Attributes atts) | public void | startElement(String uri, String localName, String qName, Attributes atts) | public void | startPrefixMapping(String prefix, String uri) |
isProgram | boolean isProgram(Code) | | Workaround variable for bug 4680.
|
SOAPDataEncoder | public SOAPDataEncoder()(Code) | | Constructs an empty SOAPDataEncoder.
|
SOAPDataEncoder | public SOAPDataEncoder(Vector v, SOAPHeader h)(Code) | | |
SOAPDataEncoder | public SOAPDataEncoder(Object p, SOAPHeader h)(Code) | | |
buildFromElements | public void buildFromElements(Vector v, SOAPHeader h)(Code) | | Build from a vector of SOAPElement items.
Parameters: v - vector of SOAPElement items. |
buildFromProgram | public void buildFromProgram(Object p, SOAPHeader h)(Code) | | Build from a vector of SOAPElement items.
Parameters: p - an Object value, already coerced to a string |
characters | public void characters(char[] ch, int start, int length)(Code) | | |
endDocument | public void endDocument()(Code) | | |
endElement | public void endElement()(Code) | | |
endPrefixMapping | public void endPrefixMapping(String prefix)(Code) | | End the scope of a prefix-URI mapping. This method is unimplemented.
Parameters: prefix - the prefix that was being mapped. |
getSize | public long getSize()(Code) | | |
ignorableWhitespace | public void ignorableWhitespace(char[] ch, int start, int length)(Code) | | Receive notification of ignorable whitespace in element content. This
method is unimplemented.
Parameters: ch - the characters from the XML document. Parameters: start - the start position in the array. Parameters: length - the number of characters to read from the array. |
processingInstruction | public void processingInstruction(String target, String data)(Code) | | Receive notification of a processing instruction. This method is
unimplemented.
Parameters: target - the processing instruction target. Parameters: data - the processing instruction data, or null if none wassupplied. The data does not include any whitespace separating it from thetarget. |
setDocumentLocator | public void setDocumentLocator(Locator locator)(Code) | | Receive an object for locating the origin of SAX document events. This
method is unimplemented.
Parameters: locator - an object that can return the location of any SAX documentevent. |
skippedEntity | public void skippedEntity(String name)(Code) | | Receive notification of a skipped entity. This method is unimplemented.
Parameters: name - the name of the skipped entity. If it is a parameter entity,the name will begin with '%', and if it is the external DTD subset, itwill be the string "[dtd]". |
start | public void start()(Code) | | |
startDocument | public void startDocument()(Code) | | |
|
|