home *** CD-ROM | disk | FTP | other *** search
- package com.ibm.xml.parser;
-
- public interface Visitor {
- void visitDocumentFragmentPre(TXDocumentFragment var1) throws Exception;
-
- void visitDocumentFragmentPost(TXDocumentFragment var1) throws Exception;
-
- void visitDocumentPre(TXDocument var1) throws Exception;
-
- void visitDocumentPost(TXDocument var1) throws Exception;
-
- void visitElementPre(TXElement var1) throws Exception;
-
- void visitElementPost(TXElement var1) throws Exception;
-
- void visitAttributePre(TXAttribute var1) throws Exception;
-
- void visitAttributePost(TXAttribute var1) throws Exception;
-
- void visitPIPre(TXPI var1) throws Exception;
-
- void visitPIPost(TXPI var1) throws Exception;
-
- void visitCommentPre(TXComment var1) throws Exception;
-
- void visitCommentPost(TXComment var1) throws Exception;
-
- void visitTextPre(TXText var1) throws Exception;
-
- void visitTextPost(TXText var1) throws Exception;
-
- void visitDTDPre(DTD var1) throws Exception;
-
- void visitDTDPost(DTD var1) throws Exception;
-
- void visitElementDeclPre(ElementDecl var1) throws Exception;
-
- void visitElementDeclPost(ElementDecl var1) throws Exception;
-
- void visitAttlistPre(Attlist var1) throws Exception;
-
- void visitAttlistPost(Attlist var1) throws Exception;
-
- void visitAttDefPre(AttDef var1) throws Exception;
-
- void visitAttDefPost(AttDef var1) throws Exception;
-
- void visitEntityDeclPre(EntityDecl var1) throws Exception;
-
- void visitEntityDeclPost(EntityDecl var1) throws Exception;
-
- void visitNotationPre(TXNotation var1) throws Exception;
-
- void visitNotationPost(TXNotation var1) throws Exception;
-
- void visitGeneralReferencePre(GeneralReference var1) throws Exception;
-
- void visitGeneralReferencePost(GeneralReference var1) throws Exception;
-
- void visitPseudoNodePre(PseudoNode var1) throws Exception;
-
- void visitPseudoNodePost(PseudoNode var1) throws Exception;
- }
-