QuickFix for PARAMETER_NAME_CHANGED_ON_OVERRIDE.
It renames method parameter to match the name from the overriden method.
This commit is contained in:
committed by
Andrey Breslav
parent
c296cbf6d1
commit
b6870b4bba
@@ -42,6 +42,8 @@ specify.type.explicitly.action.family.name=Specify Type Explicitly
|
||||
specify.type.explicitly.add.return.type.action.name=Specify return type explicitly
|
||||
specify.type.explicitly.add.action.name=Specify type explicitly
|
||||
specify.type.explicitly.remove.action.name=Remove explicitly specified type
|
||||
rename.parameter.to.match.overridden.method=Rename parameter to match overridden method
|
||||
rename.family=Rename
|
||||
|
||||
add.kotlin.signature.action.family.name=Specify Custom Kotlin Signature
|
||||
add.kotlin.signature.action.text=Specify custom Kotlin signature
|
||||
|
||||
@@ -159,5 +159,7 @@ public class QuickFixes {
|
||||
factories.put(INACCESSIBLE_OUTER_CLASS_EXPRESSION, AddModifierFix.createFactory(INNER_KEYWORD, JetClass.class));
|
||||
|
||||
factories.put(FINAL_SUPERTYPE, FinalSupertypeFix.createFactory());
|
||||
|
||||
factories.put(PARAMETER_NAME_CHANGED_ON_OVERRIDE, RenameParameterToMatchOverriddenMethodFix.createFactory());
|
||||
}
|
||||
}
|
||||
|
||||
+94
@@ -0,0 +1,94 @@
|
||||
/*
|
||||
* Copyright 2010-2013 JetBrains s.r.o.
|
||||
*
|
||||
* 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 org.jetbrains.jet.plugin.quickfix;
|
||||
|
||||
import com.intellij.codeInsight.intention.IntentionAction;
|
||||
import com.intellij.openapi.editor.Editor;
|
||||
import com.intellij.openapi.project.Project;
|
||||
import com.intellij.psi.PsiFile;
|
||||
import com.intellij.refactoring.rename.RenameProcessor;
|
||||
import com.intellij.util.IncorrectOperationException;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import org.jetbrains.jet.lang.descriptors.*;
|
||||
import org.jetbrains.jet.lang.diagnostics.Diagnostic;
|
||||
import org.jetbrains.jet.lang.psi.JetParameter;
|
||||
import org.jetbrains.jet.lang.resolve.BindingContext;
|
||||
import org.jetbrains.jet.plugin.JetBundle;
|
||||
import org.jetbrains.jet.plugin.caches.resolve.KotlinCacheManager;
|
||||
|
||||
public class RenameParameterToMatchOverriddenMethodFix extends JetIntentionAction<JetParameter>{
|
||||
private final JetParameter parameter;
|
||||
private String parameterFromSuperclassName;
|
||||
|
||||
public RenameParameterToMatchOverriddenMethodFix(@NotNull JetParameter parameter) {
|
||||
super(parameter);
|
||||
this.parameter = parameter;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isAvailable(@NotNull Project project, Editor editor, PsiFile file) {
|
||||
if (!super.isAvailable(project, editor, file)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
BindingContext context = KotlinCacheManager.getInstance(project).getDeclarationsFromProject(project).getBindingContext();
|
||||
VariableDescriptor parameterDescriptor = context.get(BindingContext.VALUE_PARAMETER, parameter);
|
||||
if (parameterDescriptor == null) {
|
||||
return false;
|
||||
}
|
||||
for (CallableDescriptor parameterFromSuperclass : parameterDescriptor.getOverriddenDescriptors()) {
|
||||
if (parameterFromSuperclassName == null) {
|
||||
parameterFromSuperclassName = parameterFromSuperclass.getName().getName();
|
||||
}
|
||||
else if (!parameterFromSuperclassName.equals(parameterFromSuperclass.getName().getName())) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return parameterFromSuperclassName != null;
|
||||
}
|
||||
|
||||
@NotNull
|
||||
@Override
|
||||
public String getText() {
|
||||
return JetBundle.message("rename.parameter.to.match.overridden.method");
|
||||
}
|
||||
|
||||
@NotNull
|
||||
@Override
|
||||
public String getFamilyName() {
|
||||
return JetBundle.message("rename.family");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void invoke(@NotNull Project project, Editor editor, PsiFile file) throws IncorrectOperationException {
|
||||
new RenameProcessor(project, parameter, parameterFromSuperclassName, false, false).run();
|
||||
}
|
||||
|
||||
@NotNull
|
||||
public static JetIntentionActionFactory createFactory() {
|
||||
return new JetIntentionActionFactory() {
|
||||
@Nullable
|
||||
@Override
|
||||
public IntentionAction createAction(Diagnostic diagnostic) {
|
||||
JetParameter parameter = QuickFixUtil.getParentElementOfType(diagnostic, JetParameter.class);
|
||||
return parameter == null ? null : new RenameParameterToMatchOverriddenMethodFix(parameter);
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
// "Rename parameter to match overridden method" "true"
|
||||
abstract class A {
|
||||
abstract fun foo(arg : Int) : Int;
|
||||
}
|
||||
|
||||
trait X {
|
||||
fun foo(arg : Int) : Int;
|
||||
}
|
||||
|
||||
class B : A(), X {
|
||||
override fun foo(var arg: Int) : Int {
|
||||
arg += 5
|
||||
return arg
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
// "Rename parameter to match overridden method" "true"
|
||||
abstract class A {
|
||||
abstract fun foo(arg : Int) : Int;
|
||||
}
|
||||
|
||||
class B : A() {
|
||||
override fun foo(var arg: Int) : Int {
|
||||
arg += 5
|
||||
return arg
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
// "Rename parameter to match overridden method" "false"
|
||||
abstract class A {
|
||||
abstract fun foo(arg : Int) : Int;
|
||||
}
|
||||
|
||||
trait X {
|
||||
fun foo(agr: Int) : Int;
|
||||
}
|
||||
|
||||
class B : A(), X {
|
||||
override fun foo(var arg<caret>: Int) : Int {
|
||||
arg += 5
|
||||
return arg
|
||||
}
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
// "Rename parameter to match overridden method" "true"
|
||||
abstract class A {
|
||||
abstract fun foo(arg : Int) : Int;
|
||||
}
|
||||
|
||||
trait X {
|
||||
fun foo(arg : Int) : Int;
|
||||
}
|
||||
|
||||
class B : A(), X {
|
||||
override fun foo(var agr<caret> : Int) : Int {
|
||||
agr += 5
|
||||
return agr
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
// "Rename parameter to match overridden method" "true"
|
||||
abstract class A {
|
||||
abstract fun foo(arg : Int) : Int;
|
||||
}
|
||||
|
||||
class B : A() {
|
||||
override fun foo(var agr<caret> : Int) : Int {
|
||||
agr += 5
|
||||
return agr
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user