1 package com.opensymphony.module.sitemesh.html.tokenizer; 2 3 import com.opensymphony.module.sitemesh.html.Tag; 4 import com.opensymphony.module.sitemesh.html.Text; 5 6 12 public interface TokenHandler { 13 14 22 boolean shouldProcessTag(String name); 23 24 30 void tag(Tag tag); 31 32 40 void text(Text text); 41 42 50 void warning(String message, int line, int column); 51 52 } 53 | Popular Tags |