1 package com.opensymphony.module.sitemesh.html;
2
3 public interface TagRule {
4 void setContext(HTMLProcessorContext context);
5 boolean shouldProcess(String name);
6 void process(Tag tag);
7 }