All Downloads are FREE. Search and download functionalities are using the official Maven repository.

groovy.ui.ConsoleApplet.groovy Maven / Gradle / Ivy

There is a newer version: 3.0.22
Show newest version
package groovy.ui

import javax.swing.JApplet

/**
 * Created by IntelliJ IDEA.
 * User: Danno.Ferrin
 * Date: Jun 20, 2008
 * Time: 7:12:09 PM
 */
public class ConsoleApplet extends JApplet {

    Console console

    public void start() {
        console = new Console()
        console.run this
    }

    public void stop() {
        console.exit()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy