01: /*
02: * Created on 19 Aug 2006
03: */
04: package uk.org.ponder.rsf.template;
05:
06: import java.util.Map;
07:
08: /** A default parse interceptor which performs no action **/
09:
10: public class NullTemplateParseInterceptor implements
11: TemplateParseInterceptor {
12: public void adjustAttributes(String tag, Map attributes) {
13: return;
14: }
15: }
|