Explore Connect Documentation
Snippets
1
2
3
4
5
6
7
8
9
10
interface Interface {
  int foo();
}
class Concretion implements Interface {
  public int foo() {
    return 1;
  }
}
Press desired key combination and then press ENTER.