update copyright
[fedora-idea.git] / java / java-impl / src / com / intellij / codeInsight / daemon / impl / quickfix / MakeMethodConstructorFix.java
blob8fbfbddd776a5d6ceecaee8c7d4a8af45b06716c
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.codeInsight.daemon.impl.quickfix;
18 import com.intellij.codeInsight.daemon.QuickFixBundle;
19 import com.intellij.codeInsight.intention.IntentionAction;
20 import com.intellij.codeInsight.CodeInsightUtilBase;
21 import com.intellij.openapi.editor.Editor;
22 import com.intellij.openapi.project.Project;
23 import com.intellij.psi.PsiFile;
24 import com.intellij.psi.PsiMethod;
25 import com.intellij.util.IncorrectOperationException;
26 import org.jetbrains.annotations.NotNull;
28 /**
29 * @author Alexey Kudravtsev
31 public class MakeMethodConstructorFix implements IntentionAction {
32 private final PsiMethod myMethod;
34 public MakeMethodConstructorFix(PsiMethod method) {
35 myMethod = method;
38 @NotNull
39 public String getText() {
40 return QuickFixBundle.message("convert.method.to.constructor");
43 @NotNull
44 public String getFamilyName() {
45 return getText();
48 public boolean isAvailable(@NotNull Project project, Editor editor, PsiFile file) {
49 return myMethod.isValid() && myMethod.getReturnTypeElement() != null && myMethod.getManager().isInProject(myMethod);
52 public void invoke(@NotNull Project project, Editor editor, PsiFile file) throws IncorrectOperationException {
53 if (!CodeInsightUtilBase.preparePsiElementForWrite(myMethod)) return;
54 myMethod.getReturnTypeElement().delete();
57 public boolean startInWriteAction() {
58 return true;