mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
16 lines
191 B
Java
16 lines
191 B
Java
interface Test {
|
|
/**
|
|
* some javadoc
|
|
*/
|
|
void foo();
|
|
}
|
|
|
|
class C implements Test {
|
|
/**
|
|
* another javadoc
|
|
*/
|
|
@Override
|
|
public void foo() {
|
|
System.out.println("C");
|
|
}
|
|
} |