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

jodd.proxetta.MutableInteger Maven / Gradle / Ivy

Go to download

Jodd Proxetta is the fastest proxy creator with unique approach for defying pointcuts and advices.

The newest version!
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 - 2024 Weber Informatics LLC | Privacy Policy