blob: 43970304c79cf5bec939a008ba31c0debc229def [file] [log] [blame]
/*
* Copyright 2003-2005 Dave Griffith
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.siyeh.ig.fixes;
import com.intellij.codeInspection.ProblemDescriptor;
import com.intellij.openapi.project.Project;
import com.intellij.psi.PsiElement;
import com.intellij.refactoring.RefactoringFactory;
import com.intellij.refactoring.RenameRefactoring;
import com.siyeh.InspectionGadgetsBundle;
import com.siyeh.ig.InspectionGadgetsFix;
import org.jetbrains.annotations.NotNull;
public class RenameParameterFix extends InspectionGadgetsFix {
private final String m_targetName;
public RenameParameterFix(String targetName) {
super();
m_targetName = targetName;
}
@Override
@NotNull
public String getName() {
return InspectionGadgetsBundle.message("renameto.quickfix", m_targetName);
}
@NotNull
@Override
public String getFamilyName() {
return "Rename";
}
@Override
public void doFix(Project project, ProblemDescriptor descriptor) {
final PsiElement nameIdentifier = descriptor.getPsiElement();
final PsiElement elementToRename = nameIdentifier.getParent();
final RefactoringFactory factory =
RefactoringFactory.getInstance(project);
final RenameRefactoring renameRefactoring =
factory.createRename(elementToRename, m_targetName);
renameRefactoring.setSearchInComments(false);
renameRefactoring.setSearchInNonJavaFiles(false);
renameRefactoring.run();
}
}