"Build All artifacts" action added
[fedora-idea.git] / java / compiler / impl / src / com / intellij / compiler / actions / BuildArtifactActionGroup.java
blob521e1d2dbbaa6f8d1772862d31ebc146cab88365
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 com.intellij.compiler.actions;
18 import com.intellij.openapi.actionSystem.*;
19 import com.intellij.openapi.project.Project;
20 import com.intellij.openapi.util.text.StringUtil;
21 import com.intellij.packaging.artifacts.Artifact;
22 import com.intellij.packaging.artifacts.ArtifactManager;
23 import org.jetbrains.annotations.NotNull;
24 import org.jetbrains.annotations.Nullable;
26 import java.util.ArrayList;
27 import java.util.List;
29 /**
30 * @author nik
32 public class BuildArtifactActionGroup extends ActionGroup {
33 public BuildArtifactActionGroup() {
34 super("Build Artifact", true);
37 @NotNull
38 public AnAction[] getChildren(@Nullable AnActionEvent e) {
39 if (e == null) return EMPTY_ARRAY;
40 final Project project = e.getData(PlatformDataKeys.PROJECT);
41 if (project == null) return EMPTY_ARRAY;
43 final Artifact[] artifacts = ArtifactManager.getInstance(project).getSortedArtifacts();
44 List<AnAction> actions = new ArrayList<AnAction>();
45 for (Artifact artifact : artifacts) {
46 if (!StringUtil.isEmpty(artifact.getOutputPath())) {
47 actions.add(new BuildArtifactAction(project, artifact));
50 if (actions.size() > 1) {
51 actions.add(0, new BuildAllArtifactsAction());
52 actions.add(1, Separator.getInstance());
54 return actions.toArray(new AnAction[actions.size()]);