IDEA-209608 When completing @Override, show element that shows override/implement dialog

GitOrigin-RevId: 876745e7afe3540253f10f908de6b289b739bee8
This commit is contained in:
peter
2019-10-01 19:46:54 +00:00
committed by intellij-monorepo-bot
parent f7d9206eef
commit 51b138bd7d
4 changed files with 76 additions and 2 deletions
@@ -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>
}
@@ -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) {
}
}