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

pro.jk.ejoker.common.utils.relationship.ObjRef Maven / Gradle / Ivy

There is a newer version: 3.0.7.1
Show newest version
package pro.jk.ejoker.common.utils.relationship;

public class ObjRef {

	private A target;

	public A getTarget() {
		return target;
	}
	
	public final static  ObjRef of(T target) {
		ObjRef oR = new ObjRef();
		oR.target = target;
		return oR;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy