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