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

application.ui.preview.Wrapper Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package application.ui.preview;

/**
 * The purpose of this class is to provide an object that can be synchronized on
 * when the data variable is null or modified.
 * @author Joel Håkansson
 */
class Wrapper {
	private T value = null;

	public T getValue() {
		return value;
	}

	public void setValue(T value) {
		this.value = value;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy