mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-21 01:25:40 +07:00
15 lines
196 B
Plaintext
15 lines
196 B
Plaintext
class Foo {
|
|
|
|
public String bar;
|
|
private String baz;
|
|
|
|
public void setBar(String bar) {
|
|
this.bar = bar;
|
|
baz = bar;
|
|
bar();
|
|
}
|
|
|
|
private void bar() {
|
|
|
|
}
|
|
} |