Examples of AnalyzeChangelistFiles


Examples of org.twodividedbyzero.idea.findbugs.actions.AnalyzeChangelistFiles

    //noinspection ConstantConditions
    LOGGER.debug("project is opened: " + plugin.getName() + " project="  + getProject());
    initToolWindow();
    setActionGroupsIcon();
    registerToolbarActions();
    final AnalyzeChangelistFiles action = (AnalyzeChangelistFiles) ActionManager.getInstance().getAction(FindBugsPluginConstants.ACTIVE_CHANGELIST_ACTION);
    ChangeListManager.getInstance(_project).removeChangeListListener(action.getChangelistAdapter());
  }
View Full Code Here

Examples of org.twodividedbyzero.idea.findbugs.actions.AnalyzeChangelistFiles

  public void projectClosed() {
    final IdeaPluginDescriptor plugin = PluginManager.getPlugin(PluginId.getId(FindBugsPluginConstants.PLUGIN_NAME));
    //noinspection ConstantConditions
    LOGGER.debug("project is being closed: " + plugin.getName() + " project="  + getProject());
    EventManagerImpl.getInstance().removeEventListener(_project);
    final AnalyzeChangelistFiles action = (AnalyzeChangelistFiles) ActionManager.getInstance().getAction(FindBugsPluginConstants.ACTIVE_CHANGELIST_ACTION);
    ChangeListManager.getInstance(_project).removeChangeListListener(action.getChangelistAdapter());
    unregisterToolWindow();
    disableToolbarActions();
  }
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.