mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 05:07:31 +07:00
13 lines
138 B
Java
13 lines
138 B
Java
class Foo{
|
|
Bar bar;
|
|
|
|
void doSomething() {
|
|
bar.newDoSomething();
|
|
}
|
|
|
|
class Bar {
|
|
public void newDoSomething() {
|
|
|
|
}
|
|
}
|
|
} |