The objects that are passed in (attributes and element name) must not be used outside this method.
@param dynamicProcess The DynamicProcess that has invoked this rule. @param element The name of the element that the rule was invoked for. @param object The object that was returned by the matching{@link #startElement} method.String
value
@param localName a String
value
@param rawName a String
value
@throws SAXException if an error occurs
String
value
@param localName a String
value
@param rawName a String
value
@throws SAXException if an error occurs
The SAX parser 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).
If the element name has a namespace prefix, the prefix will still be attached to the name.
@param ns the namespace of the element @param localName The local part of the qualified name of the element @param name The element name</[element name]>
) is reached. Note that the parser does not distinguish between empty elements and non-empty elements, so this will occur uniformly.
@param namespaceURI String
URI of namespace thiselement is associated with
@param localName String
name of element without prefix
@param qName String
name of element in XML 1.0 form
@throws SAXException when things go wrong
The SAX parser will invoke this method at the end of every element in the XML document; there will be a corresponding {@link #startElement startElement} event for every endElement event (even when the element is empty).
For information on the names, see startElement.
@param uri the Namespace URI, or the empty string if theelement has no Namespace URI or if Namespace processing is not being performed @param localName the local name (without prefix), or theempty string if Namespace processing is not being performed @param qName the qualified XML name (with prefix), or theempty string if qualified names are not available @throws org.xml.sax.SAXException any SAX exception, possiblywrapping another exceptionThe SAX parser 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).
If the element name has a namespace prefix, the prefix will still be attached to the name.
@param name The element type name @exception org.xml.sax.SAXException Any SAX exception, possiblywrapping another exception.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).
@param name The element type name. @param attributes The specified or defaulted attributes. @exception org.xml.sax.SAXException Any SAX exception, possiblywrapping another exception. @see org.xml.sax.ContentHandler#endElement
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|