mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
23 lines
264 B
Plaintext
23 lines
264 B
Plaintext
class CommandQueue {
|
|
|
|
void f() {
|
|
}
|
|
}
|
|
|
|
class CommandManager {
|
|
|
|
void g() {
|
|
|
|
}
|
|
|
|
CommandQueue getCommandQueue() {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
class Application {
|
|
CommandManager myManager;
|
|
{
|
|
myManager.getCommandQueue().f();
|
|
}
|
|
} |