Package net.sf.rej.gui

Examples of net.sf.rej.gui.UndoManager


    public FileSet getFileSet() {
        return this.fileset;
    }

    public UndoManager getUndoManager(String file) {
        UndoManager um = null;
        if (this.undoManagers.containsKey(file)) {
            um = this.undoManagers.get(file);
        } else {
            um = new UndoManager();
            this.undoManagers.put(file, um);
        }

        return um;
    }
View Full Code Here

TOP

Related Classes of net.sf.rej.gui.UndoManager

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.