Package com.foundationdb.sql.ui.SwingConsole

Examples of com.foundationdb.sql.ui.SwingConsole.TextAreaPrintStream


{
    public static void main(String[] args) {
        // This has to be done before log4j gets a chance to capture the previous
        // System.out for the CONSOLE appender. It will get switched to the real
        // console when that service starts up.
        PrintStream ps = new TextAreaPrintStream();
        System.setOut(ps);
        try {
            Main.main(args);
        }
        catch (Exception ex) {
View Full Code Here

TOP

Related Classes of com.foundationdb.sql.ui.SwingConsole.TextAreaPrintStream

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.