01: /**
02: *
03: * © Copyright International Business Machines Corporation 2006.
04: * All rights reserved.
05: *
06: * The 'Template' interface defines the functionality of a compiled template.
07: *
08: * File : Template.java
09: * Created : 2006/03/09
10: *
11: * @author Rene Pawlitzek (rpa@zurich.ibm.com)
12: * @version 2.00, 2006/03/09
13: * @since JDK 1.3
14: *
15: * History : 2006/03/09, rpa, new file
16: * 2006/03/14, rpa, code review
17: *
18: */package com.ibm.hamlet;
19:
20: import java.io.*;
21:
22: public interface Template {
23:
24: public void serveDoc(PrintWriter writer, ContentHandler handler)
25: throws Exception;
26:
27: } // Template
28:
29: /* ----- End of File ----- */
|