mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 01:09:46 +07:00
14 lines
228 B
Java
14 lines
228 B
Java
interface Am {
|
|
String getIc<caret>on();
|
|
}
|
|
|
|
class AIIm implements Am {
|
|
@Override
|
|
public String getIcon() {
|
|
return null;
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
new AIIm().getIcon();
|
|
}
|
|
} |