Package org.apache.isis.noa.util

Examples of org.apache.isis.noa.util.DebugInfo



public class ShowDebugFrame {
    public static void main(final String[] args) {
        DebugFrame frame = new DebugFrame() {
            DebugInfo info1 = new DebugInfo() {
                public void debugData(final DebugString debug) {
                    debug.appendln("Debug data");
                }

                public String debugTitle() {
                    return "Debug title";
                }
            };

            DebugInfo info2 = new DebugInfo() {
                public void debugData(final DebugString debug) {
                    debug.appendln("Debug data 2");
                }

                public String debugTitle() {
                    return "Debug title 2";
                }
            };

            DebugInfo info3 = new DebugInfo() {
                public void debugData(final DebugString debug) {
                    debug.appendln("Debug data 3");
                }

                public String debugTitle() {
View Full Code Here

TOP

Related Classes of org.apache.isis.noa.util.DebugInfo

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.