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

net.anotheria.asg.data.Builder Maven / Gradle / Ivy

package net.anotheria.asg.data;

/**
 * Generic interface for DataObject Builders.
 *
 * @author lrosenberg
 * @param  the type to build.
 * @version $Id: $Id
 */
public interface Builder {
	/**
	 * Builds a new instance of T.
	 *
	 * @return T
	 */
	T build();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy