Package org.analyse.core.modules

Examples of org.analyse.core.modules.UndoInterface.undo()


        } 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;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.