mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
28 lines
502 B
Java
28 lines
502 B
Java
class EditorFactory {
|
|
|
|
static EditorFactory getInstance() {
|
|
return null;
|
|
}
|
|
|
|
Editor getEditor() {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
class Editor {
|
|
}
|
|
|
|
class Main {
|
|
|
|
|
|
void stats() {
|
|
EditorFactory.getInstance().getEditor();
|
|
EditorFactory.getInstance().getEditor();
|
|
EditorFactory.getInstance().getEditor();
|
|
EditorFactory.getInstance().getEditor();
|
|
EditorFactory.getInstance().getEditor();
|
|
EditorFactory.getInstance().getEditor();
|
|
EditorFactory.getInstance().getEditor();
|
|
}
|
|
|
|
} |