SourceGenerator.java :  » Web-Framework » Hamlets » com » ibm » hamlet » compiler » Java Open Source

Java Open Source » Web Framework » Hamlets 
Hamlets » com » ibm » hamlet » compiler » SourceGenerator.java
/**
 *
 *  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 ----- */
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.