commit document on @Override completion, show it before other members (IDEA-CR-53119, IDEA-209608)

GitOrigin-RevId: ee5ddb47316b073cde379dbb5fcf3416ecfc9805
This commit is contained in:
peter
2019-10-04 21:32:34 +00:00
committed by intellij-monorepo-bot
parent ce35a8c769
commit 447119aa07
5 changed files with 90 additions and 3 deletions
@@ -0,0 +1,10 @@
interface Foo<T> {
void run(T t, int myInt);
void run2(T t, int myInt);
}
class A implements Foo<String> {
@Overr<caret>
void foo() {}
}
@@ -0,0 +1,47 @@
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) {
}
void foo() {}
}