01: /**
02: *
03: * © Copyright International Business Machines Corporation 2005, 2006.
04: * All rights reserved.
05: *
06: * The 'TemplateEngine' interface defines the functionality of a template engine.
07: *
08: * File : TemplateEngine.java
09: * Created : 2005/08/16
10: *
11: * @author Rene Pawlitzek (rpa@zurich.ibm.com)
12: * @version 2.00, 2005/08/16
13: * @since JDK 1.3
14: *
15: * History : 2005/08/16, 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 TemplateEngine {
23:
24: public void perform(InputStream in, ContentHandler handler,
25: PrintWriter out) throws Exception;
26:
27: } // TemplateEngine
28:
29: /* ----- End of File ----- */
|