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

com.draagon.util.TransientHolder Maven / Gradle / Ivy

The newest version!
package com.draagon.util;

/**
 * Holds object with a transient reference
 * @author Doug
 */
public class TransientHolder {
	private transient Object o;
	public TransientHolder( Object o ) { this.o = o; }
	public Object get() { return o; }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy