mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-14 00:01:54 +07:00
16 lines
201 B
Java
16 lines
201 B
Java
public class Param {
|
|
private int i;
|
|
|
|
public Param(int i) {
|
|
this.i = i;
|
|
}
|
|
|
|
public int getI() {
|
|
return i;
|
|
}
|
|
|
|
public void setI(int i) {
|
|
this.i = i;
|
|
}
|
|
}
|