23 lines
360 B
Java
23 lines
360 B
Java
package fields;
|
|
|
|
public class ReloadableTop extends NotReloadable {
|
|
|
|
// public int j = 37;
|
|
|
|
public void setI_ReloadableTop(int newi) {
|
|
this.i = newi;
|
|
}
|
|
|
|
public int getI_ReloadableTop() {
|
|
return this.i;
|
|
}
|
|
//
|
|
// public void setJ_ReloadableTop(int newj) {
|
|
// this.j = newj;
|
|
// }
|
|
//
|
|
// public int getJ_ReloadableTop() {
|
|
// return this.j;
|
|
// }
|
|
}
|