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

me.shib.java.lib.TestLib Maven / Gradle / Ivy

The newest version!
package me.shib.java.lib;

public class TestLib {

    private int a;
    private int b;

    public TestLib(int a, int b) {
        this.a = a;
        this.b = b;
    }

    public int getA() {
        return a;
    }

    public void setA(int a) {
        this.a = a;
    }

    public int getB() {
        return b;
    }

    public void setB(int b) {
        this.b = b;
    }

    public int sum() {
        return a + b;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy