mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
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");
|
|
}
|
|
}
|