Package net.sf.rej.gui.event

Examples of net.sf.rej.gui.event.Event


  }

  public void removeLastConstantPoolItem(ConstantPool cp) {
    RemoveLastConstantPoolInfo rlcpi = new RemoveLastConstantPoolInfo(cp);
    SystemFacade.getInstance().performAction(rlcpi, this.openFile);
    this.dispatcher.notifyObservers(new Event(EventType.CLASS_UPDATE));   
  }
View Full Code Here


  }

  public void modifyUTF8Info(UTF8Info info, String newValue) {
    ModifyUTF8InfoAction mui = new ModifyUTF8InfoAction(info, newValue);
    SystemFacade.getInstance().performAction(mui, this.openFile);
    this.dispatcher.notifyObservers(new Event(EventType.CLASS_UPDATE));
  }
View Full Code Here

  }

  public void modifyDoubleInfo(DoubleInfo info, double newValue) {
    ModifyDoubleInfoAction mdia = new ModifyDoubleInfoAction(info, newValue);
    SystemFacade.getInstance().performAction(mdia, this.openFile);
    this.dispatcher.notifyObservers(new Event(EventType.CLASS_UPDATE));
  }
View Full Code Here

  }

  public void modifyStringInfo(StringInfo info, String newValue) {
    ModifyStringInfoAction msia = new ModifyStringInfoAction(info, newValue);
    SystemFacade.getInstance().performAction(msia, this.openFile);
    this.dispatcher.notifyObservers(new Event(EventType.CLASS_UPDATE));
  }
View Full Code Here

  }

  public void addStringInfo(ConstantPool cp, String str) {
    AddStringInfoAction asia = new AddStringInfoAction(cp, str);
    SystemFacade.getInstance().performAction(asia, this.openFile);
    this.dispatcher.notifyObservers(new Event(EventType.CLASS_UPDATE));
  }
View Full Code Here

  }

  public void addConstantPoolInfo(ConstantPool cp, ConstantPoolInfo item) {
    AddConstantPoolInfoAction asia = new AddConstantPoolInfoAction(cp, item);
    SystemFacade.getInstance().performAction(asia, this.openFile);
    this.dispatcher.notifyObservers(new Event(EventType.CLASS_UPDATE));
  }
View Full Code Here

  }

  public void modifyLongInfo(LongInfo info, long newValue) {
    ModifyLongInfoAction mlia = new ModifyLongInfoAction(info, newValue);
    SystemFacade.getInstance().performAction(mlia, this.openFile);
    this.dispatcher.notifyObservers(new Event(EventType.CLASS_UPDATE));
  }
View Full Code Here

  public void modifyIntegerInfo(IntegerInfo info, int newValue) {
    ModifyIntegerInfoAction miia = new ModifyIntegerInfoAction(info,
        newValue);
    SystemFacade.getInstance().performAction(miia, this.openFile);
    this.dispatcher.notifyObservers(new Event(EventType.CLASS_UPDATE));
  }
View Full Code Here

  }

  public void modifyFloatInfo(FloatInfo info, float newValue) {
    ModifyFloatInfoAction mfia = new ModifyFloatInfoAction(info, newValue);
    SystemFacade.getInstance().performAction(mfia, this.openFile);
    this.dispatcher.notifyObservers(new Event(EventType.CLASS_UPDATE));
  }
View Full Code Here

    return this.lineMode;
  }

  public void setLineMode(int mode) {
    this.lineMode.setMode(mode);
    this.dispatcher.notifyObservers(new Event(EventType.DISPLAY_PARAMETER_UPDATE));
  }
View Full Code Here

TOP

Related Classes of net.sf.rej.gui.event.Event

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.