SystemFacade.getInstance().performAction(ga);
this.dispatcher.notifyObservers(new Event(EventType.CLASS_UPDATE));
}
public void insertInstruction(Instruction inst, int pc, Code code) {
InsertInstructionAction iia = new InsertInstructionAction(inst, pc,
code);
SystemFacade.getInstance().performAction(iia, this.openFile);
this.dispatcher.notifyObservers(new Event(EventType.CLASS_UPDATE));
}