1 31 32 package org.opencms.util; 33 34 import java.util.List ; 35 36 import org.htmlparser.Remark; 37 import org.htmlparser.Tag; 38 import org.htmlparser.Text; 39 import org.htmlparser.util.ParserException; 40 41 56 public interface I_CmsHtmlNodeVisitor { 57 58 68 String getConfiguration(); 69 70 76 String getResult(); 77 78 89 String process(String html, String encoding) throws ParserException; 90 91 100 void setConfiguration(String configuration); 101 102 110 void setNoAutoCloseTags(List noAutoCloseTags); 111 112 120 void visitEndTag(Tag tag); 121 122 130 void visitRemarkNode(Remark remark); 131 132 141 void visitStringNode(Text text); 142 143 151 void visitTag(Tag tag); 152 153 } | Popular Tags |