ebb37821528f5a14b3c601fd71926ca97ebe7860
[fedora-idea.git] / plugins / maven / src / main / java / org / jetbrains / idea / maven / utils / MavenIcons.java
blobebb37821528f5a14b3c601fd71926ca97ebe7860
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package org.jetbrains.idea.maven.utils;
18 import com.intellij.openapi.util.IconLoader;
20 import javax.swing.*;
22 public class MavenIcons {
23 public static final Icon MAVEN_ICON = IconLoader.getIcon("/images/mavenLogo.png");
24 public static final Icon MAVEN_PROJECT_ICON = IconLoader.getIcon("/images/mavenProject.png");
25 public static final Icon OPEN_PROFILES_ICON = IconLoader.getIcon("/images/profilesOpen.png");
26 public static final Icon CLOSED_PROFILES_ICON = IconLoader.getIcon("/images/profilesClosed.png");
27 public static final Icon OPEN_PHASES_ICON = IconLoader.getIcon("/images/phasesOpen.png");
28 public static final Icon CLOSED_PHASES_ICON = IconLoader.getIcon("/images/phasesClosed.png");
29 public static final Icon PHASE_ICON = IconLoader.getIcon("/images/phase.png");
30 public static final Icon OPEN_PLUGINS_ICON = IconLoader.getIcon("/images/phasesOpen.png");
31 public static final Icon CLOSED_PLUGINS_ICON = IconLoader.getIcon("/images/phasesClosed.png");
32 public static final Icon PLUGIN_ICON = IconLoader.getIcon("/images/mavenPlugin.png");
33 public static final Icon REPOSITORY_ICON = IconLoader.getIcon("/images/mavenPlugin.png");
34 public static final Icon PLUGIN_GOAL_ICON = IconLoader.getIcon("/images/pluginGoal.png");
35 public static final Icon OPEN_DEPENDENCIES_ICON = IconLoader.getIcon("/nodes/ppLibOpen.png");
36 public static final Icon CLOSED_DEPENDENCIES_ICON = IconLoader.getIcon("/nodes/ppLibClosed.png");
37 public static final Icon DEPENDENCY_ICON = IconLoader.getIcon("/nodes/ppLib.png");
38 public static final Icon OPEN_MODULES_ICON = IconLoader.getIcon("/images/modulesOpen.png");
39 public static final Icon CLOSED_MODULES_ICON = IconLoader.getIcon("/images/modulesClosed.png");