jpower.core.Factory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JPower Show documentation
Show all versions of JPower Show documentation
Powerful Library for the JVM
package jpower.core;
/**
* Utility class that allows you to allow users to
* easily build an instance of the specified object.
* @param object type
*/
public interface Factory
{
/**
* Build an instance of our object.
*/
T create();
}