01: /*
02: * Created on 15-Dec-2005
03: */
04: package uk.org.ponder.rsf.processor;
05:
06: import uk.org.ponder.streamutil.write.PrintOutputStream;
07:
08: /**
09: * Performs the core request work of rendering a view.
10: * @author Antranig Basman (amb26@ponder.org.uk)
11: *
12: */
13: public interface RenderHandler {
14: public abstract void handle(PrintOutputStream pos);
15: }
|