mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-04 23:39:07 +07:00
16 lines
217 B
Java
16 lines
217 B
Java
public class Test {
|
|
private int myCount;
|
|
|
|
public Test(int count) {
|
|
myCount = count;
|
|
}
|
|
|
|
public int getCount() {
|
|
return myCount;
|
|
}
|
|
|
|
public void inc() {
|
|
myCount++;
|
|
}
|
|
}
|