mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-17 06:49:59 +07:00
commit document on @Override completion, show it before other members (IDEA-CR-53119, IDEA-209608)
GitOrigin-RevId: ee5ddb47316b073cde379dbb5fcf3416ecfc9805
This commit is contained in:
committed by
intellij-monorepo-bot
parent
ce35a8c769
commit
447119aa07
+10
@@ -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() {}
|
||||
}
|
||||
+47
@@ -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() {}
|
||||
}
|
||||
Reference in New Issue
Block a user