org.opennms.bb.eui.admin.UserGroupView.Parser
Class ParserBase

java.lang.Object
  |
  +--org.opennms.bb.common.utils.BBParser
        |
        +--org.opennms.bb.eui.admin.UserGroupView.Parser.ParserBase
Direct Known Subclasses:
GroupParser, UserParser, ViewParser

class ParserBase
extends BBParser

Author:
Chitta Basu Modifications: 04/18/00 - Changed the parser to extend BBParser - Sowmya

Inner classes inherited from class org.opennms.bb.common.utils.BBParser
BBParser.BBErrorHandler
 
Fields inherited from class org.opennms.bb.common.utils.BBParser
ATTRIB_VALUE_PAIR_ERR, ATTRIB_VALUE_PAIR_ERR_STR, EXCEPTION, m_curElement, m_errNum, m_exceptionMsg, m_inpSource, m_parser, NULL_VALUE_ERR, NULL_VALUE_ERR_STR
 
Constructor Summary
ParserBase()
           
 
Method Summary
protected  void processAttribute(org.w3c.dom.Attr attr)
           
protected  void processCDATASection(org.w3c.dom.CDATASection sec)
           
protected  void processComment(org.w3c.dom.Comment comm)
           
protected  boolean processDocument(org.w3c.dom.Document doc)
          Process the 'Document' object or the root of the DOM tree
protected  void processDocumentFragment(org.w3c.dom.DocumentFragment df)
           
protected  void processDocumentType(org.w3c.dom.DocumentType dtd)
           
protected  boolean processElement(org.w3c.dom.Element el)
           
protected  void processEntity(org.w3c.dom.Entity ent)
           
protected  void processEntityReference(org.w3c.dom.EntityReference er)
           
protected  boolean processNode(org.w3c.dom.Node node)
          Processes a 'Node' object of the DOM tree depending upon the node type
protected  void processNotation(org.w3c.dom.Notation not)
           
protected  void processProcessingInstruction(org.w3c.dom.ProcessingInstruction pi)
           
protected  void processText(org.w3c.dom.Text text)
           
 
Methods inherited from class org.opennms.bb.common.utils.BBParser
getErrorMessage, getErrorNumber, parse, parse, parse, parse, processElement, processParmValue
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Constructor Detail

ParserBase

public ParserBase()
Method Detail

processNode

protected boolean processNode(org.w3c.dom.Node node)
Description copied from class: BBParser
Processes a 'Node' object of the DOM tree depending upon the node type
Overrides:
processNode in class BBParser
Following copied from class: org.opennms.bb.common.utils.BBParser
Returns:
true if the node is read succefully

processAttribute

protected void processAttribute(org.w3c.dom.Attr attr)

processCDATASection

protected void processCDATASection(org.w3c.dom.CDATASection sec)

processComment

protected void processComment(org.w3c.dom.Comment comm)

processDocument

protected boolean processDocument(org.w3c.dom.Document doc)
Description copied from class: BBParser
Process the 'Document' object or the root of the DOM tree
Overrides:
processDocument in class BBParser
Following copied from class: org.opennms.bb.common.utils.BBParser
Returns:
true if the tree traversal is successful, false otherwise

processDocumentFragment

protected void processDocumentFragment(org.w3c.dom.DocumentFragment df)

processDocumentType

protected void processDocumentType(org.w3c.dom.DocumentType dtd)

processElement

protected boolean processElement(org.w3c.dom.Element el)

processEntity

protected void processEntity(org.w3c.dom.Entity ent)

processEntityReference

protected void processEntityReference(org.w3c.dom.EntityReference er)

processNotation

protected void processNotation(org.w3c.dom.Notation not)

processProcessingInstruction

protected void processProcessingInstruction(org.w3c.dom.ProcessingInstruction pi)

processText

protected void processText(org.w3c.dom.Text text)