mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
allow to override non-abstract methods (IDEA-69772)
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
// "Implement method 'foo'" "true"
|
||||
abstract class Test {
|
||||
abstract void foo();
|
||||
}
|
||||
|
||||
class TImple extends Test {
|
||||
@Override
|
||||
void foo() {
|
||||
<selection>//To change body of implemented methods use File | Settings | File Templates.</selection>
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
// "Implement method 'foo'" "true"
|
||||
class Test {
|
||||
protected void foo(){}
|
||||
}
|
||||
|
||||
class TImple extends Test {
|
||||
@Override
|
||||
protected void foo() {
|
||||
<selection>super.foo(); //To change body of overridden methods use File | Settings | File Templates.</selection>
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
// "Implement method 'foo'" "true"
|
||||
abstract class Test {
|
||||
abstract void f<caret>oo();
|
||||
}
|
||||
|
||||
class TImple extends Test {}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
// "Implement method 'foo'" "false"
|
||||
abstract class Test {
|
||||
abstract void f<caret>oo();
|
||||
}
|
||||
|
||||
class TImple extends Test {
|
||||
void foo() {}
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
// "Implement method 'foo'" "false"
|
||||
abstract class Test {
|
||||
abstract void f<caret>oo();
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
// "Implement method 'foo'" "false"
|
||||
class Test {
|
||||
private void f<caret>oo(){}
|
||||
}
|
||||
|
||||
class TImple extends Test {}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
// "Implement method 'foo'" "true"
|
||||
class Test {
|
||||
protected void f<caret>oo(){}
|
||||
}
|
||||
|
||||
class TImple extends Test {}
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
|
||||
/*
|
||||
* Copyright 2000-2012 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 com.intellij.codeInsight.daemon.quickFix;
|
||||
|
||||
public class OverrideMethodTest extends LightQuickFix15TestCase {
|
||||
|
||||
public void test() throws Exception {
|
||||
doAllTests();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected String getBasePath() {
|
||||
return "/codeInsight/daemonCodeAnalyzer/quickFix/overrideMethod";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user