Package org.twodividedbyzero.idea.findbugs.common

Source Code of org.twodividedbyzero.idea.findbugs.common.FindBugsPluginUtil

/*
* Copyright 2008-2014 Andre Pfeiler
*
* This file is part of FindBugs-IDEA.
*
* FindBugs-IDEA is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* FindBugs-IDEA is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with FindBugs-IDEA.  If not, see <http://www.gnu.org/licenses/>.
*/

package org.twodividedbyzero.idea.findbugs.common;

import com.intellij.ide.plugins.IdeaPluginDescriptor;
import com.intellij.ide.plugins.PluginManager;
import com.intellij.openapi.extensions.PluginId;


/**
* $Date: 2014-06-04 01:01:00 +0100 (Wed, 04 June 2014) $
*
* @author Reto Merz<reto.merz@gmail.com>
* @version $Revision: 311 $
* @since 0.9.993
*/
public class FindBugsPluginUtil {


  private FindBugsPluginUtil() {
  }


  public static IdeaPluginDescriptor getIdeaPluginDescriptor() {
    final IdeaPluginDescriptor plugin = PluginManager.getPlugin(PluginId.getId(FindBugsPluginConstants.PLUGIN_NAME));
    if (plugin == null) {
      throw new IllegalStateException(FindBugsPluginConstants.PLUGIN_NAME + " could not be instantiated! PluginManager returned null!");
    }
    return plugin;
  }
}
TOP

Related Classes of org.twodividedbyzero.idea.findbugs.common.FindBugsPluginUtil

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.