Package org.analyse.core.modules

Examples of org.analyse.core.modules.UndoInterface


        if (action.equals(Constantes.QUIT)) {
            Main.analyseFrame.exit();
        } else if (action.equals(Constantes.ABOUT)) {
            Main.aboutWindow.setVisible(true);
        } else if (action.equals(Constantes.UNDO)) {
            UndoInterface u;

            try {
                u = (UndoInterface) p;
                u.undo();
            } catch (ClassCastException exp) {
                System.err.println(exp);
            }
        } else if (action.equals(Constantes.REDO)) {
            UndoInterface u;

            try {
                u = (UndoInterface) p;
                u.redo();
            } catch (ClassCastException exp) {
                System.err.println(exp);
            }
        } else if (action.equals(Constantes.CUT)) {
            ClipboardInterface c;
View Full Code Here

TOP

Related Classes of org.analyse.core.modules.UndoInterface

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.