[Expand]
Inherited Methods |
From class
com.microstrategy.utils.xml.DefaultContentHandler
void
|
characters(char[] ch, int start, int length)
Callback to indicate that characters have been found.
|
void
|
clearChars()
Resets the characters collected.
|
void
|
endDocument()
What to do when the end of document is encountered.
|
void
|
endElement(String uri, String localName, String qName)
Callback to indicate the end of an XML element.
|
String
|
generateErrorMessage(String message)
Formats an error message supplied by the user.
|
String
|
getCharacters()
Returns the last text area that was encountered.
|
int
|
getCurrentLineNumber()
Returns the current line number (if we can determine it) or -1.
|
void
|
ignorableWhitespace(char[] ch, int start, int length)
Callback when ignorable whitespace has been encountered in an XML
document.
|
void
|
incrementValidationErrorCount()
Increment the number of validation errors.
|
void
|
internalError(String message)
Throws an internal SAXException error formatted with the supplied error
message.
|
void
|
resetData()
Resets all data structures used in the previous parse operation.
|
void
|
setDocumentLocator(Locator locator)
Callback method to record the document locator.
|
void
|
setMessageRouter(MessageRouter messageRouter)
Specifies the Message Router to use for this parse operation.
|
void
|
setSourceLocation(String sourceLocation)
Specifies the location of the source text being parsed.
|
void
|
setXMLReader(XMLReader xmlReader)
Sets the XML Reader which is being used to parse the XML text.
|
void
|
startElement(String uri, String localName, String qName, Attributes attributes)
Callback invoked when a new element is encountered.
|
void
|
validationError(String message)
Reports a validation error.
|
|
From class
org.xml.sax.helpers.DefaultHandler
void
|
characters(char[] arg0, int arg1, int arg2)
|
void
|
endDocument()
|
void
|
endElement(String arg0, String arg1, String arg2)
|
void
|
endPrefixMapping(String arg0)
|
void
|
error(SAXParseException arg0)
|
void
|
fatalError(SAXParseException arg0)
|
void
|
ignorableWhitespace(char[] arg0, int arg1, int arg2)
|
void
|
notationDecl(String arg0, String arg1, String arg2)
|
void
|
processingInstruction(String arg0, String arg1)
|
InputSource
|
resolveEntity(String arg0, String arg1)
|
void
|
setDocumentLocator(Locator arg0)
|
void
|
skippedEntity(String arg0)
|
void
|
startDocument()
|
void
|
startElement(String arg0, String arg1, String arg2, Attributes arg3)
|
void
|
startPrefixMapping(String arg0, String arg1)
|
void
|
unparsedEntityDecl(String arg0, String arg1, String arg2, String arg3)
|
void
|
warning(SAXParseException arg0)
|
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
From interface
org.xml.sax.ContentHandler
abstract
void
|
characters(char[] arg0, int arg1, int arg2)
|
abstract
void
|
endDocument()
|
abstract
void
|
endElement(String arg0, String arg1, String arg2)
|
abstract
void
|
endPrefixMapping(String arg0)
|
abstract
void
|
ignorableWhitespace(char[] arg0, int arg1, int arg2)
|
abstract
void
|
processingInstruction(String arg0, String arg1)
|
abstract
void
|
setDocumentLocator(Locator arg0)
|
abstract
void
|
skippedEntity(String arg0)
|
abstract
void
|
startDocument()
|
abstract
void
|
startElement(String arg0, String arg1, String arg2, Attributes arg3)
|
abstract
void
|
startPrefixMapping(String arg0, String arg1)
|
|
From interface
org.xml.sax.DTDHandler
abstract
void
|
notationDecl(String arg0, String arg1, String arg2)
|
abstract
void
|
unparsedEntityDecl(String arg0, String arg1, String arg2, String arg3)
|
|
From interface
org.xml.sax.EntityResolver
abstract
InputSource
|
resolveEntity(String arg0, String arg1)
|
|
From interface
org.xml.sax.ErrorHandler
abstract
void
|
error(SAXParseException arg0)
|
abstract
void
|
fatalError(SAXParseException arg0)
|
abstract
void
|
warning(SAXParseException arg0)
|
|