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();
}