Package net.sf.rej.gui.action

Examples of net.sf.rej.gui.action.MarkClassFileModifiedAction


              // is the file in question is not modified yet, group the new action
              // with an action that changes the status of the file.
                GroupAction ga = new GroupAction();
                ga.add(action);
              ClassFile cf = getClassFile(targetFile);
                ga.add(new MarkClassFileModifiedAction(this.project, targetFile, cf));
                um.add(ga);
                ga.execute();
            } else {
              um.add(action);
              action.execute();
View Full Code Here

TOP

Related Classes of net.sf.rej.gui.action.MarkClassFileModifiedAction

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.