01: package com.opensymphony.module.sitemesh.html;
02:
03: import com.opensymphony.module.sitemesh.html.util.CharArray;
04:
05: public interface HTMLProcessorContext {
06:
07: State currentState();
08:
09: void changeState(State newState);
10:
11: void pushBuffer(CharArray buffer);
12:
13: CharArray currentBuffer();
14:
15: CharArray popBuffer();
16:
17: void mergeBuffer();
18: }
|