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

jodd.proxetta.MutableInteger Maven / Gradle / Ivy

package jodd.proxetta;

public class MutableInteger {
	public MutableInteger() {
		this(0);
	}
	public MutableInteger(int value) {
		this.value = value;
	}

	public int value;

	public int get() {
		return value;
	}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy