mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-25 00:40:00 +07:00
26 lines
255 B
Java
26 lines
255 B
Java
class EditorFactory {
|
|
|
|
static EditorFactory getInstance() {
|
|
return null;
|
|
}
|
|
|
|
Editor getEditor() {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
class Editor {
|
|
}
|
|
|
|
class Main {
|
|
|
|
|
|
void stats() {
|
|
Editor e = <caret>
|
|
}
|
|
|
|
Editor getEditor() {
|
|
return null;
|
|
}
|
|
|
|
} |