jodd.proxetta.MutableInteger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jodd-proxetta Show documentation
Show all versions of jodd-proxetta Show documentation
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;
}
}