mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-11 07:40:58 +07:00
24 lines
253 B
Java
24 lines
253 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;
|
|
}
|
|
|
|
} |