Package com.intellij.openapi.actionSystem

Examples of com.intellij.openapi.actionSystem.ToggleAction


  protected abstract void setAutoScrollMode(boolean state);
  public abstract void install();
  public abstract void dispose();

  public ToggleAction createToggleAction() {
    return new ToggleAction(UIBundle.message("autoscroll.from.source.action.name"),
                            UIBundle.message("autoscroll.from.source.action.description"), IconLoader.getIcon("/general/autoscrollFromSource.png")) {
      public boolean isSelected(AnActionEvent event) {
        return isAutoScrollMode();
      }
View Full Code Here

TOP

Related Classes of com.intellij.openapi.actionSystem.ToggleAction

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.