1 7 8 package org.dom4j; 9 10 29 public interface Visitor { 30 38 void visit(Document document); 39 40 48 void visit(DocumentType documentType); 49 50 58 void visit(Element node); 59 60 68 void visit(Attribute node); 69 70 78 void visit(CDATA node); 79 80 88 void visit(Comment node); 89 90 98 void visit(Entity node); 99 100 108 void visit(Namespace namespace); 109 110 118 void visit(ProcessingInstruction node); 119 120 128 void visit(Text node); 129 } 130 131 167 | Popular Tags |