Package net.sf.rej.gui.action

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


    this.dispatcher.notifyObservers(new Event(EventType.CLASS_UPDATE));
  }

  public void modifyClass(ClassFile cf, AccessFlags flags, String className,
      String superName, List<Interface> remainingInterfaces, List<String> newInterfaces) {
    ModifyClassPropertiesAction mcpa = new ModifyClassPropertiesAction(cf,
        flags, className, superName, remainingInterfaces, newInterfaces);
    SystemFacade.getInstance().performAction(mcpa, this.openFile);
    this.dispatcher.notifyObservers(new Event(EventType.CLASS_UPDATE));
  }
View Full Code Here

TOP

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

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.