mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 04:11:31 +07:00
17 lines
236 B
Java
17 lines
236 B
Java
public class A {
|
|
public int i;
|
|
|
|
void foo(A a) {
|
|
System.out.println(a./*comment*/getI());
|
|
a/*comment*/.setI(42);
|
|
}
|
|
|
|
public int getI() {
|
|
return i;
|
|
}
|
|
|
|
public void setI(int i) {
|
|
this.i = i;
|
|
}
|
|
}
|