Package net.sourceforge.marathon.display.readline

Examples of net.sourceforge.marathon.display.readline.TextAreaReadline


        pane.setViewportView(text);
        pane.setBorder(BorderFactory.createLineBorder(Color.darkGray));
        getContentPane().add(pane);
        setSize(640, 480);
        validate();
        textAreaReadline = new TextAreaReadline(text, "Marathon Script Console \n\n") {
            @Override public void keyPressed(KeyEvent event) {
                if (event.getKeyCode() == KeyEvent.VK_ESCAPE) {
                    textAreaReadline.shutdown();
                    if (spooler != null)
                        spooler.close();
View Full Code Here

TOP

Related Classes of net.sourceforge.marathon.display.readline.TextAreaReadline

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.