/**
*
* Copyright International Business Machines Corporation 2006.
* All rights reserved.
*
* The 'SourceGenerator' interface defines the functionality of a source generator.
*
* File : SourceGenerator.java
* Created : 2006/03/02
*
* @author Rene Pawlitzek (rpa@zurich.ibm.com)
* @version 1.00, 2006/03/02
* @since JDK 1.3
*
* History : 2006/03/02, rpa, new file
* 2006/03/14, rpa, code review
*
*/
package com.ibm.hamlet.compiler;
import java.io.*;
public interface SourceGenerator {
public void perform (InputStream in, OutputStream out, String name) throws Exception;
} // SourceGenerator
/* ----- End of File ----- */
|