mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 742a0995a87056cfd71ae61c02fa280a02ea18d8
21 lines
357 B
Java
21 lines
357 B
Java
// "Use existing implementation of 'm'" "true"
|
|
interface SampleInterface {
|
|
/**
|
|
* Specified in the interface
|
|
*/
|
|
public void m<caret>();
|
|
}
|
|
|
|
class Test3 implements SampleInterface {
|
|
}
|
|
|
|
class Test1 implements SampleInterface {
|
|
/**
|
|
* Test1 implementation
|
|
*/
|
|
@Override
|
|
public void m() {
|
|
System.out.println("Test1 implementation");
|
|
}
|
|
}
|