Package org.apache.geronimo.gshell.ansi

Examples of org.apache.geronimo.gshell.ansi.Buffer


    }

    public String getWelcomeBanner() {
        StringWriter writer = new StringWriter();
        PrintWriter out = new RenderWriter(writer);
        Buffer buff = new Buffer();

        for (String line : BANNER) {
            buff.attrib(line, Code.CYAN);
            out.println(buff);
        }

        out.println();
        out.println(" @|bold ServiceMix| (" + getVersion() + ")");
View Full Code Here

TOP

Related Classes of org.apache.geronimo.gshell.ansi.Buffer

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.