
com.draagon.util.TransientHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utilities Show documentation
Show all versions of utilities Show documentation
Draagon Utilities used by other Draagon projects
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