
com.github.t3t5u.common.util.Reference Maven / Gradle / Ivy
The newest version!
package com.github.t3t5u.common.util;
public class Reference {
private T referent;
public T get() {
return referent;
}
public void set(final T referent) {
this.referent = referent;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy