
me.shib.java.lib.TestLib Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sample-java-lib-maven Show documentation
Show all versions of sample-java-lib-maven Show documentation
A sample skeleton for maven projects
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