Examples of RenamerRuleEditor


Examples of edu.zao.fire.editors.RenamerRuleEditor

  /**
   * The save command is enabled whenever there is a dirty active editor.
   */
  @Override
  public boolean isEnabled() {
    RenamerRuleEditor editor = Activator.getDefault().getEditorManager().getActiveEditor();
    if (editor == null) {
      return false;
    }
    return editor.isDirty();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.