Package org.analyse.core.modules

Examples of org.analyse.core.modules.ClipboardInterface


                u.redo();
            } catch (ClassCastException exp) {
                System.err.println(exp);
            }
        } else if (action.equals(Constantes.CUT)) {
            ClipboardInterface c;

            try {
                c = (ClipboardInterface) p;
                c.cut();
            } catch (ClassCastException exp) {
                System.err.println(exp);
            }
        } else if (action.equals(Constantes.COPY)) {
            ClipboardInterface c;
            try {
                c = (ClipboardInterface) p;
                c.copy();
            } catch (ClassCastException exp) {
                System.err.println(exp);
            }
        } else if (action.equals(Constantes.PASTE)) {
            ClipboardInterface c;

            try {
                c = (ClipboardInterface) p;
                c.paste();
            } catch (ClassCastException exp) {
                System.err.println(exp);
            }
        } else if (action.equals(Constantes.NEW)) {
            AnalyseSave s = Main.analyseFrame.getAnalyseSave();
View Full Code Here

TOP

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

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.