mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-17 01:57:50 +07:00
IDEA-209608 When completing @Override, show element that shows override/implement dialog
GitOrigin-RevId: 876745e7afe3540253f10f908de6b289b739bee8
This commit is contained in:
committed by
intellij-monorepo-bot
parent
f7d9206eef
commit
51b138bd7d
+8
@@ -0,0 +1,8 @@
|
||||
interface Foo<T> {
|
||||
void run(T t, int myInt);
|
||||
void run2(T t, int myInt);
|
||||
}
|
||||
|
||||
class A implements Foo<String> {
|
||||
@Overr<caret>
|
||||
}
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
interface Foo<T> {
|
||||
void run(T t, int myInt);
|
||||
void run2(T t, int myInt);
|
||||
}
|
||||
|
||||
class A implements Foo<String> {
|
||||
public A() {
|
||||
<selection><caret>super();</selection>
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return super.hashCode();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
return super.equals(obj);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Object clone() throws CloneNotSupportedException {
|
||||
return super.clone();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return super.toString();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void finalize() throws Throwable {
|
||||
super.finalize();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void run(String s, int myInt) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void run2(String s, int myInt) {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user