|
XML for Java Compatibility API 2.0.15 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object | +--com.ibm.xml.parser.NOOPVisitor
NOOPVisitor is an adapter class that implements the Visitor interface without providing any operation on the various DOM- and XML4J-defined Nodes; other visitors, such as ToXMLStringVisitor, subclass NOOPVisitor and selectively override these NOOP methods to provide their function.
ToXMLStringVisitor,
Visitor,
TreeTraversal,
NonRecursivePreorderTreeTraversal| Constructor Summary | |
NOOPVisitor()
Constructor. |
|
| Method Summary | |
void |
visitAttDefPost(AttDef attDef)
Subclass this method to receive control when the end of an AttDef Node is recognized when traversing the document object tree. |
void |
visitAttDefPre(AttDef attDef)
Subclass this method to receive control when the start of an AttDef Node is recognized when traversing the document object tree. |
void |
visitAttlistPost(Attlist attlist)
Subclass this method to receive control when the end of an Attlist Node is recognized when traversing the document object tree. |
void |
visitAttlistPre(Attlist attlist)
Subclass this method to receive control when the start of an Attlist Node is recognized when traversing the document object tree. |
void |
visitAttributePost(TXAttribute attribute)
Subclass this method to receive control when the end of a TXAttribute Node is recognized when traversing the document object tree. |
void |
visitAttributePre(TXAttribute attribute)
Subclass this method to receive control when the start of a TXAttribute Node is recognized when traversing the document object tree. |
void |
visitCommentPost(TXComment comment)
Subclass this method to receive control when the end of a TXComment Node is recognized when traversing the document object tree. |
void |
visitCommentPre(TXComment comment)
Subclass this method to receive control when the start of a TXComment Node is recognized when traversing the document object tree. |
void |
visitDocumentFragmentPost(TXDocumentFragment documentFragment)
Subclass this method to receive control when the end of a TXDocumentFragment Node is recognized when traversing the document object tree. |
void |
visitDocumentFragmentPre(TXDocumentFragment documentFragment)
Subclass this method to receive control when the start of a TXDocumentFragment Node is recognized when traversing the document object tree. |
void |
visitDocumentPost(TXDocument document)
Subclass this method to receive control when the end of a TXDocument Node is recognized when traversing the document object tree. |
void |
visitDocumentPre(TXDocument document)
Subclass this method to receive control when the start of a TXDocument Node is recognized when traversing the document object tree. |
void |
visitDTDPost(DTD dtd)
Subclass this method to receive control when the end of a DTD Node is recognized when traversing the document object tree. |
void |
visitDTDPre(DTD dtd)
Subclass this method to receive control when the start of a DTD Node is recognized when traversing the document object tree. |
void |
visitElementDeclPost(ElementDecl elementDecl)
Subclass this method to receive control when the end of an ElementDecl Node is recognized when traversing the document object tree. |
void |
visitElementDeclPre(ElementDecl elementDecl)
Subclass this method to receive control when the start of an ElementDecl Node is recognized when traversing the document object tree. |
void |
visitElementPost(TXElement element)
Subclass this method to receive control when the end of a TXElement Node is recognized when traversing the document object tree. |
void |
visitElementPre(TXElement element)
Subclass this method to receive control when the start of a TXElement Node is recognized when traversing the document object tree. |
void |
visitEntityDeclPost(EntityDecl entityDecl)
Subclass this method to receive control when the end of an EntityDecl Node is recognized when traversing the document object tree. |
void |
visitEntityDeclPre(EntityDecl entityDecl)
Subclass this method to receive control when the start of an EntityDecl Node is recognized when traversing the document object tree. |
void |
visitGeneralReferencePost(GeneralReference generalReference)
Subclass this method to receive control when the end of a GeneralReference Node is recognized when traversing the document object tree. |
void |
visitGeneralReferencePre(GeneralReference generalReference)
Subclass this method to receive control when the start of a GeneralReference Node is recognized when traversing the document object tree. |
void |
visitNotationPost(TXNotation notation)
Subclass this method to receive control when the end of a TXNotation Node is recognized when traversing the document object tree. |
void |
visitNotationPre(TXNotation notation)
Subclass this method to receive control when the start of a TXNotation Node is recognized when traversing the document object tree. |
void |
visitPIPost(TXPI pi)
Subclass this method to receive control when the end of a TXPI Node is recognized when traversing the document object tree. |
void |
visitPIPre(TXPI pi)
Subclass this method to receive control when the start of a TXPI Node is recognized when traversing the document object tree. |
void |
visitPseudoNodePost(PseudoNode pseudoNode)
Subclass this method to receive control when the end of a PseudoNode is recognized when traversing the document object tree. |
void |
visitPseudoNodePre(PseudoNode pseudoNode)
Subclass this method to receive control when the start of a PseudoNode is recognized when traversing the document object tree. |
void |
visitTextPost(TXText text)
Subclass this method to receive control when the end of a TXText Node is recognized when traversing the document object tree. |
void |
visitTextPre(TXText text)
Subclass this method to receive control when the start of a TXText Node is recognized when traversing the document object tree. |
| Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
| Constructor Detail |
public NOOPVisitor()
| Method Detail |
public void visitDocumentFragmentPre(TXDocumentFragment documentFragment)
throws java.lang.Exception
documentFragment - The Node currently being traversed.visitDocumentFragmentPost(com.ibm.xml.parser.TXDocumentFragment),
TXDocumentFragment
public void visitDocumentFragmentPost(TXDocumentFragment documentFragment)
throws java.lang.Exception
documentFragment - The Node currently being traversed.visitDocumentFragmentPre(com.ibm.xml.parser.TXDocumentFragment),
TXDocumentFragment
public void visitDocumentPre(TXDocument document)
throws java.lang.Exception
document - The Node currently being traversed.visitDocumentPost(com.ibm.xml.parser.TXDocument),
TXDocument
public void visitDocumentPost(TXDocument document)
throws java.lang.Exception
document - The Node currently being traversed.visitDocumentPre(com.ibm.xml.parser.TXDocument),
TXDocument
public void visitElementPre(TXElement element)
throws java.lang.Exception
element - The Node currently being traversed.visitElementPost(com.ibm.xml.parser.TXElement),
TXElement
public void visitElementPost(TXElement element)
throws java.lang.Exception
element - The Node currently being traversed.visitElementPre(com.ibm.xml.parser.TXElement),
TXElement
public void visitAttributePre(TXAttribute attribute)
throws java.lang.Exception
attribute - The Node currently being traversed.visitAttributePost(com.ibm.xml.parser.TXAttribute),
TXAttribute
public void visitAttributePost(TXAttribute attribute)
throws java.lang.Exception
attribute - The Node currently being traversed.visitAttributePre(com.ibm.xml.parser.TXAttribute),
TXAttribute
public void visitPIPre(TXPI pi)
throws java.lang.Exception
pi - The Node currently being traversed.visitPIPost(com.ibm.xml.parser.TXPI),
TXPI
public void visitPIPost(TXPI pi)
throws java.lang.Exception
pi - The Node currently being traversed.visitPIPre(com.ibm.xml.parser.TXPI),
TXPI
public void visitCommentPre(TXComment comment)
throws java.lang.Exception
comment - The Node currently being traversed.visitCommentPost(com.ibm.xml.parser.TXComment),
TXComment
public void visitCommentPost(TXComment comment)
throws java.lang.Exception
comment - The Node currently being traversed.visitCommentPre(com.ibm.xml.parser.TXComment),
TXComment
public void visitTextPre(TXText text)
throws java.lang.Exception
text - The Node currently being traversed.visitTextPost(com.ibm.xml.parser.TXText),
TXText
public void visitTextPost(TXText text)
throws java.lang.Exception
text - The Node currently being traversed.visitTextPre(com.ibm.xml.parser.TXText),
TXText
public void visitDTDPre(DTD dtd)
throws java.lang.Exception
dtd - The Node currently being traversed.visitDTDPost(com.ibm.xml.parser.DTD),
DTD
public void visitDTDPost(DTD dtd)
throws java.lang.Exception
dtd - The Node currently being traversed.visitDTDPre(com.ibm.xml.parser.DTD),
DTD
public void visitElementDeclPre(ElementDecl elementDecl)
throws java.lang.Exception
elementDecl - The Node currently being traversed.visitElementDeclPost(com.ibm.xml.parser.ElementDecl),
ElementDecl
public void visitElementDeclPost(ElementDecl elementDecl)
throws java.lang.Exception
elementDecl - The Node currently being traversed.visitElementDeclPre(com.ibm.xml.parser.ElementDecl),
ElementDecl
public void visitAttlistPre(Attlist attlist)
throws java.lang.Exception
attlist - The Node currently being traversed.visitAttlistPost(com.ibm.xml.parser.Attlist),
Attlist
public void visitAttlistPost(Attlist attlist)
throws java.lang.Exception
attlist - The Node currently being traversed.visitAttlistPre(com.ibm.xml.parser.Attlist),
Attlist
public void visitAttDefPre(AttDef attDef)
throws java.lang.Exception
attDef - The Node currently being traversed.visitAttDefPost(com.ibm.xml.parser.AttDef),
AttDef
public void visitAttDefPost(AttDef attDef)
throws java.lang.Exception
attDef - The Node currently being traversed.visitAttDefPre(com.ibm.xml.parser.AttDef),
AttDef
public void visitEntityDeclPre(EntityDecl entityDecl)
throws java.lang.Exception
entityDecl - The Node currently being traversed.visitEntityDeclPost(com.ibm.xml.parser.EntityDecl),
EntityDecl
public void visitEntityDeclPost(EntityDecl entityDecl)
throws java.lang.Exception
entityDecl - The Node currently being traversed.visitEntityDeclPre(com.ibm.xml.parser.EntityDecl),
EntityDecl
public void visitNotationPre(TXNotation notation)
throws java.lang.Exception
notation - The Node currently being traversed.visitNotationPost(com.ibm.xml.parser.TXNotation),
TXNotation
public void visitNotationPost(TXNotation notation)
throws java.lang.Exception
notation - The Node currently being traversed.visitNotationPre(com.ibm.xml.parser.TXNotation),
TXNotation
public void visitGeneralReferencePre(GeneralReference generalReference)
throws java.lang.Exception
generalReference - The Node currently being traversed.visitGeneralReferencePost(com.ibm.xml.parser.GeneralReference),
GeneralReference
public void visitGeneralReferencePost(GeneralReference generalReference)
throws java.lang.Exception
generalReference - The Node currently being traversed.visitGeneralReferencePre(com.ibm.xml.parser.GeneralReference),
GeneralReference
public void visitPseudoNodePre(PseudoNode pseudoNode)
throws java.lang.Exception
pseudoNode - The Node currently being traversed.visitPseudoNodePost(com.ibm.xml.parser.PseudoNode),
PseudoNode
public void visitPseudoNodePost(PseudoNode pseudoNode)
throws java.lang.Exception
pseudoNode - The Node currently being traversed.visitPseudoNodePre(com.ibm.xml.parser.PseudoNode),
PseudoNode
|
XML for Java Compatibility API 2.0.15 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||