home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / xml4j.jar / com / ibm / xml / parser / Visitor.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-08-30  |  1.8 KB  |  64 lines

  1. package com.ibm.xml.parser;
  2.  
  3. public interface Visitor {
  4.    void visitDocumentFragmentPre(TXDocumentFragment var1) throws Exception;
  5.  
  6.    void visitDocumentFragmentPost(TXDocumentFragment var1) throws Exception;
  7.  
  8.    void visitDocumentPre(TXDocument var1) throws Exception;
  9.  
  10.    void visitDocumentPost(TXDocument var1) throws Exception;
  11.  
  12.    void visitElementPre(TXElement var1) throws Exception;
  13.  
  14.    void visitElementPost(TXElement var1) throws Exception;
  15.  
  16.    void visitAttributePre(TXAttribute var1) throws Exception;
  17.  
  18.    void visitAttributePost(TXAttribute var1) throws Exception;
  19.  
  20.    void visitPIPre(TXPI var1) throws Exception;
  21.  
  22.    void visitPIPost(TXPI var1) throws Exception;
  23.  
  24.    void visitCommentPre(TXComment var1) throws Exception;
  25.  
  26.    void visitCommentPost(TXComment var1) throws Exception;
  27.  
  28.    void visitTextPre(TXText var1) throws Exception;
  29.  
  30.    void visitTextPost(TXText var1) throws Exception;
  31.  
  32.    void visitDTDPre(DTD var1) throws Exception;
  33.  
  34.    void visitDTDPost(DTD var1) throws Exception;
  35.  
  36.    void visitElementDeclPre(ElementDecl var1) throws Exception;
  37.  
  38.    void visitElementDeclPost(ElementDecl var1) throws Exception;
  39.  
  40.    void visitAttlistPre(Attlist var1) throws Exception;
  41.  
  42.    void visitAttlistPost(Attlist var1) throws Exception;
  43.  
  44.    void visitAttDefPre(AttDef var1) throws Exception;
  45.  
  46.    void visitAttDefPost(AttDef var1) throws Exception;
  47.  
  48.    void visitEntityDeclPre(EntityDecl var1) throws Exception;
  49.  
  50.    void visitEntityDeclPost(EntityDecl var1) throws Exception;
  51.  
  52.    void visitNotationPre(TXNotation var1) throws Exception;
  53.  
  54.    void visitNotationPost(TXNotation var1) throws Exception;
  55.  
  56.    void visitGeneralReferencePre(GeneralReference var1) throws Exception;
  57.  
  58.    void visitGeneralReferencePost(GeneralReference var1) throws Exception;
  59.  
  60.    void visitPseudoNodePre(PseudoNode var1) throws Exception;
  61.  
  62.    void visitPseudoNodePost(PseudoNode var1) throws Exception;
  63. }
  64.