All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tk.hongkailiu.test.app.aaa.J Maven / Gradle / Ivy

The newest version!
package tk.hongkailiu.test.app.aaa;

public class J extends H {

    private int i;

    public J(int i) {
        super(i);
    }

    @Override
    public int getI() {
        return i;
    }

    @Override
    public void setI(int i) {
        this.i = i;
        init();
    }

    private void init() {
        i = i + 1;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy