
org.psjava.util.DataKeeper Maven / Gradle / Ivy
package org.psjava.util;
public class DataKeeper {
public static DataKeeper create(T v) {
return new DataKeeper(v);
}
private T v;
public DataKeeper(T v) {
this.v = v;
}
public void set(T v) {
this.v = v;
}
public T get() {
return v;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy