mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +07:00
17 lines
312 B
Java
17 lines
312 B
Java
interface JavaInterface {
|
|
void foo(Object <caret>p);
|
|
}
|
|
|
|
class JavaClass1 implements JavaInterface {
|
|
@Override
|
|
public void foo(Object p) {
|
|
System.out.println(<flown1>p);
|
|
}
|
|
}
|
|
|
|
class JavaClass2 implements JavaInterface {
|
|
@Override
|
|
public void foo(Object p) {
|
|
System.err.println(<flown2>p);
|
|
}
|
|
} |