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

com.jpattern.orm.util.GenericWrapper Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
package com.jpattern.orm.util;


/**
 * 
 * @author Francesco Cina'
 *
 * 29/mar/2010
 */
public class GenericWrapper   {

	/**
	 * 
	 */
	
	private E value;
	
	public GenericWrapper(E value) {
		this.value = value;
	}
	
	public E getValue() {
		return value;
	}

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy