Package net.sourceforge.htmlunit.corejs.javascript.tools.shell

Examples of net.sourceforge.htmlunit.corejs.javascript.tools.shell.ConsoleTextArea


    /**
     * Creates a new JSInternalConsole.
     */
    public JSInternalConsole(String name) {
        super(name, true, false, true, true);
        consoleTextArea = new ConsoleTextArea(null);
        consoleTextArea.setRows(24);
        consoleTextArea.setColumns(80);
        JScrollPane scroller = new JScrollPane(consoleTextArea);
        setContentPane(scroller);
        pack();
View Full Code Here

TOP

Related Classes of net.sourceforge.htmlunit.corejs.javascript.tools.shell.ConsoleTextArea

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.