Public Member Functions | |
_.Library.Status | OnNew (_.Library.RawString initvalue, pGlobalName) |
This callback method is invoked by the <METHOD>New</METHOD> method to. More... | |
characters (_.Library.String chars, _.Library.Integer length) | |
Receive notification of character data inside an element. More... | |
comment (_.Library.String chars, _.Library.Integer length) | |
Receive notification of comments. More... | |
endCDATA () | |
Receive notification of the end of a CDATA section. More... | |
endElement (_.Library.String uri, _.Library.String localname, _.Library.String qname) | |
Receive notification of the end of an element. More... | |
endEntity (_.Library.String name) | |
Receive notification of the end of an entity. More... | |
endPrefixMapping (_.Library.String prefix) | |
Receive notification of the end of an namespace prefix mapping. More... | |
error (_.Library.String error) | |
Receive notification of a recoverable parser error. More... | |
fatalError (_.Library.String fatalerror) | |
Report a fatal XML parsing error. More... | |
ignorableWhitespace (_.Library.String chars, _.Library.Integer length) | |
Receive notification of ignorable whitespace in element content. More... | |
processingInstruction (_.Library.String target, _.Library.String data) | |
Receive notification of a processing instruction in element content. More... | |
startCDATA () | |
Receive notification of the start of a CDATA section. More... | |
startDocument () | |
Receive notification of the beginning of the document. More... | |
startElement (_.Library.String uri, _.Library.String localname, _.Library.String qname, _.Library.List attrs) | |
Receive notification of the start of an element. More... | |
startEntity (_.Library.String name) | |
Receive notification of the start of an entity. More... | |
startPrefixMapping (_.Library.String prefix, _.Library.String uri) | |
Receive notification of the start of an namespace prefix mapping. More... | |
warning (_.Library.String warning) | |
Receive notification of a parser warning. More... | |
![]() | |
_.Library.Status | LocatePosition (_.Library.Integer Line, _.Library.Integer Offset) |
Locate the current position within the parsed document. More... | |
_.Library.Integer | Mask () |
Calculate MASK for call to xerces parser. More... | |
_.Library.Status | OnPostParse () |
Callback after XML parse complete. | |
_.Library.Status | PopHandler () |
Return to the previous handler. | |
_.Library.Status | PushHandler (_.XML.SAX.ContentHandler Handler) |
Push a new handler on the stack. More... | |
endDTD () | |
Receive notification of the end of the DTD declarations. More... | |
endDocument () | |
Receive notification of the end of the document. More... | |
skippedEntity (_.Library.String name) | |
Receive notification of a skipped entity. More... | |
startDTD (_.Library.String name, _.Library.String publicId, _.Library.String systemId) | |
Receive notification of the start of the DTD declarations. More... | |
![]() | |
_.Library.Status | OnAddToSaveSet (_.Library.Integer depth, _.Library.Integer insert, _.Library.Integer callcount) |
This callback method is invoked when the current object is added to the SaveSet,. More... | |
_.Library.Status | OnClose () |
This callback method is invoked by the <METHOD>Close</METHOD> method to. More... | |
_.Library.Status | OnConstructClone (_.Library.RegisteredObject object, _.Library.Boolean deep, _.Library.String cloned) |
This callback method is invoked by the <METHOD>ConstructClone</METHOD> method to. More... | |
_.Library.Status | OnNew () |
This callback method is invoked by the <METHOD>New</METHOD> method to. More... | |
_.Library.Status | OnValidateObject () |
This callback method is invoked by the <METHOD>ValidateObject</METHOD> method to. More... | |
Public Attributes | |
Depth | |
More... | |
GlobalName | |
More... | |
KeepWhitespace | |
More... | |
Target | |
More... | |
Private Attributes | |
__CharType | |
More... | |
__EntityName | |
More... | |
__Seq | |
More... | |
Additional Inherited Members | |
![]() | |
CAPTION = None | |
Optional name used by the Form Wizard for a class when generating forms. More... | |
JAVATYPE = None | |
The Java type to be used when exported. | |
PROPERTYVALIDATION = None | |
This parameter controls the default validation behavior for the object. More... | |
_.Library.Status OnNew | ( | _.Library.RawString | initvalue, |
pGlobalName | |||
) |
This callback method is invoked by the <METHOD>New</METHOD> method to.
provide notification that a new instance of an object is being created.
If this method returns an error then the object will not be created.
characters | ( | _.Library.String | chars, |
_.Library.Integer | length | ||
) |
Receive notification of character data inside an element.
<p> By default, do nothing. Application writers may override this method to take specific actions for each chunk of character data (such as adding the data to a node or buffer, or printing it to a file). </P> <p> <ul> <li>chars: The characters.</li> <li>length: The number of characters to use from the character array.</li> </ul>
Reimplemented from ContentHandler.
comment | ( | _.Library.String | chars, |
_.Library.Integer | length | ||
) |
Receive notification of comments.
<p>The Parser will call this method to report each occurence of a comment in the XML document.</p> <p>The application must not attempt to read from the array outside of the specified range.</p> <ul> <li>chars: The characters from the XML document.</li> <li>length: The number of characters to read from the array.</li> </ul> <p> Exceptions thrown: SAXException - Any SAX exception, possibly wrapping another exception.</p>
Reimplemented from ContentHandler.
endCDATA | ( | ) |
Receive notification of the end of a CDATA section.
<p>The SAX parser will invoke this method at the end of each CDATA parsed.</p> <p> Exceptions thrown: SAXException - Any SAX exception, possibly wrapping another exception.</p> /
Reimplemented from ContentHandler.
endElement | ( | _.Library.String | uri, |
_.Library.String | localname, | ||
_.Library.String | qname | ||
) |
Receive notification of the end of an element.
<p> By default, do nothing. Application writers may override this method in a subclass to take specific actions at the end of each element (such as finalising a tree node or writing output to a file). </p> <p> <ul> <li>uri: The URI of the associated namespace for this element</li> <li>localname: The local part of the element name</li> <li>qname: The QName of this element</li> </ul> </p>
Reimplemented from ContentHandler.
endEntity | ( | _.Library.String | name | ) |
Receive notification of the end of an entity.
The SAX parser will invoke this method at the end of an entity
Exceptions thrown: SAXException - Any SAX exception, possibly wrapping another exception.
Reimplemented from ContentHandler.
endPrefixMapping | ( | _.Library.String | prefix | ) |
Receive notification of the end of an namespace prefix mapping.
<p> By default, do nothing. Application writers may override this method in a subclass to take specific actions at the end of each namespace prefix mapping.</p> </p> <p> <ul> <li>prefix: The namespace prefix used</li> </ul> </p>
Reimplemented from ContentHandler.
error | ( | _.Library.String | error | ) |
Receive notification of a recoverable parser error.
<p> The default implementation does nothing. Application writers may override this method in a subclass to take specific actions for each error, such as inserting the message in a log file or printing it to the console. </p> <p> <ul> <li>error: The error information encoded as a string</li> </ul> </p>
Reimplemented from ContentHandler.
fatalError | ( | _.Library.String | fatalerror | ) |
Report a fatal XML parsing error.
<p> The default implementation throws an exeption Application writers may override this method in a subclass if they need to take specific actions for each fatal error (such as collecting all of the errors into a single report): in any case, the application must stop all regular processing when this method is invoked, since the document is no longer reliable, and the parser may no longer report parsing events. </p> <p> <ul> <li>fatalerror: The error information encoded as a string</li> </ul> </p>
Reimplemented from ContentHandler.
ignorableWhitespace | ( | _.Library.String | chars, |
_.Library.Integer | length | ||
) |
Receive notification of ignorable whitespace in element content.
<p> By default, do nothing. Application writers may override this method to take specific actions for each chunk of ignorable whitespace (such as adding data to a node or buffer, or printing it to a file). </p> <p> <ul> <li>chars: The whitespace characters.</li> <li>length: The number of characters to use from the character array.</li> </ul> </p>
Reimplemented from ContentHandler.
processingInstruction | ( | _.Library.String | target, |
_.Library.String | data | ||
) |
Receive notification of a processing instruction in element content.
<p> Application writers may override this method in a subclass if they need to take specific actions for processing instruction. </p> <p> <ul> <li>target: The target of the processing instruction</li> <li>data: The associated data</li> </ul> </p>
Reimplemented from ContentHandler.
startCDATA | ( | ) |
Receive notification of the start of a CDATA section.
<p>The SAX parser will invoke this method at the start of each CDATA parsed.</p> <p> Exceptions thrown: SAXException - Any SAX exception, possibly wrapping another exception.</p>
Reimplemented from ContentHandler.
startDocument | ( | ) |
Receive notification of the beginning of the document.
<p> By default, do nothing. Application writers may override this method in a subclass to take specific actions at the beginning of a document (such as allocating the root node of a tree or creating an output file) <p>
Reimplemented from ContentHandler.
startElement | ( | _.Library.String | uri, |
_.Library.String | localname, | ||
_.Library.String | qname, | ||
_.Library.List | attrs | ||
) |
Receive notification of the start of an element.
<p> By default, do nothing. Application writers may override this method in a subclass to take specific actions at the start of each element (such as allocating a new tree node or writin output to a file). </p> <p> <ul> <li>uri: The URI of the associated namespace for this element</li> <li>localname: the local part of the element name</li> <li>qname: the QName of this element</li> <li>attrs: a list in <a target="_top" href="/csp/docbook/Doc.View.cls?FIND=OBJECTSCRIPT+$LIST+FUNCTION">$List</a> format consisting of a repeating group of attributes.</li> </ul> <p> The format of the repeating group is as follows: <ul> <li>+0 - uri: The URI of the associated namespace for this attribute</li> <li>+1 - localname: The local part of the name of this attribute</li> <li>+2 - qname: The QName of this attribute</li> <li>+3 - type: The type of this attribute ("CDATA", NMTOKEN", "ENTITY", etc.)</li> <li>+4 - value: The value of this attribute</li> </ul> </p>
Reimplemented from ContentHandler.
startEntity | ( | _.Library.String | name | ) |
Receive notification of the start of an entity.
<p>The SAX parser will invoke this method at the start of an entity</p> <ul> <li>name: The name of the entity that is starting.</li> </ul> <p> Exceptions thrown: SAXException - Any SAX exception, possibly wrapping another exception.</p>
Reimplemented from ContentHandler.
startPrefixMapping | ( | _.Library.String | prefix, |
_.Library.String | uri | ||
) |
Receive notification of the start of an namespace prefix mapping.
<p> By default, do nothing. Application writers may override this method in a subclass to take specific actions at the start of each namespace prefix mapping. </p> <p> <ul> <li>prefix: The namespace prefix used</li> <li>uri: The namespace URI used.</li> </ul> </p>
Reimplemented from ContentHandler.
warning | ( | _.Library.String | warning | ) |
Receive notification of a parser warning.
The default implementation does nothing. Application writers may override this method in a subclass to take specific actions for each warning, such as inserting the message in a log file or printing it to the console.
Reimplemented from ContentHandler.
|
private |
Depth |
|
private |
GlobalName |
KeepWhitespace |
|
private |
Target |