mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +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 {}
|
||||
Reference in New Issue
Block a user