enhanced API for nullness
[fedora-idea.git] / java / java-impl / src / com / intellij / codeInspection / DeleteThrowsFix.java
blobb05ce0a384646f42ab302e27d2633485a8e302c4
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.codeInspection;
18 import com.intellij.codeInsight.daemon.QuickFixBundle;
19 import com.intellij.codeInsight.daemon.impl.quickfix.MethodThrowsFix;
20 import com.intellij.openapi.project.Project;
21 import com.intellij.psi.PsiClassType;
22 import com.intellij.psi.PsiFile;
23 import com.intellij.psi.PsiMethod;
24 import com.intellij.psi.PsiElement;
25 import org.jetbrains.annotations.NotNull;
27 /**
28 * @author cdr
30 public class DeleteThrowsFix implements LocalQuickFix {
31 private final MethodThrowsFix myQuickFix;
33 public DeleteThrowsFix(PsiMethod method, PsiClassType exceptionClass) {
34 myQuickFix = new MethodThrowsFix(method, exceptionClass, false, false);
37 @NotNull
38 public String getName() {
39 return myQuickFix.getText();
42 @NotNull
43 public String getFamilyName() {
44 return QuickFixBundle.message("fix.throws.list.family");
47 public void applyFix(@NotNull Project project, @NotNull ProblemDescriptor descriptor) {
48 PsiElement element = descriptor.getPsiElement();
49 if (element == null) return;
50 final PsiFile psiFile = element.getContainingFile();
51 if (myQuickFix.isAvailable(project, null, psiFile)) {
52 myQuickFix.invoke(project, null, psiFile);