IDEA-131145 Completion for @Override

This commit is contained in:
peter
2014-11-10 17:53:26 +01:00
parent 38e08bdcf9
commit ca3481dbd3
4 changed files with 45 additions and 12 deletions
@@ -0,0 +1,7 @@
interface Foo<T> {
void run(T t, int myInt);
}
public class A implements Foo<String> {
@Overr<caret>
}
@@ -0,0 +1,10 @@
interface Foo<T> {
void run(T t, int myInt);
}
public class A implements Foo<String> {
@Override
public void run(String s, int myInt) {
<caret>
}
}