update copyright
[fedora-idea.git] / java / idea-ui / src / com / intellij / ide / util / frameworkSupport / AddFrameworkSupportAction.java
blob529f2df9db0ae98c2b8a37bce34576de4f6a5b4b
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.ide.util.frameworkSupport;
18 import com.intellij.openapi.actionSystem.ActionPlaces;
19 import com.intellij.openapi.actionSystem.AnAction;
20 import com.intellij.openapi.actionSystem.AnActionEvent;
21 import com.intellij.openapi.actionSystem.LangDataKeys;
22 import com.intellij.openapi.module.Module;
24 /**
25 * @author nik
27 public class AddFrameworkSupportAction extends AnAction {
28 public void actionPerformed(final AnActionEvent e) {
29 Module module = e.getData(LangDataKeys.MODULE_CONTEXT);
30 if (module == null) return;
32 AddFrameworkSupportDialog dialog = AddFrameworkSupportDialog.createDialog(module);
33 if (dialog != null) {
34 dialog.show();
38 public void update(final AnActionEvent e) {
39 Module module = e.getData(LangDataKeys.MODULE_CONTEXT);
40 boolean enable = module != null && AddFrameworkSupportDialog.isAvailable(module);
41 if (ActionPlaces.isPopupPlace(e.getPlace())) {
42 e.getPresentation().setVisible(enable);
44 else {
45 e.getPresentation().setEnabled(enable);