Package org.twodividedbyzero.idea.findbugs.actions

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


  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

Related Classes of org.twodividedbyzero.idea.findbugs.actions.AnalyzeChangelistFiles

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.