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

tk.hongkailiu.test.app.cla.A Maven / Gradle / Ivy

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

public class A {

    private int i = 3;

    public A(int i) {
        super();
        this.i = i;
    }

    public A() {
        super();
    }

    public int getI() {
        return i;
    }

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

    @Override public String toString() {
        return "" + i;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy