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