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));
}