net.sf.javagimmicks.lang.Factory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gimmicks Show documentation
Show all versions of gimmicks Show documentation
Utility classes, APIs and tools for Java
package net.sf.javagimmicks.lang;
/**
* This is a simple interface for factory classes - classes the generate
* instances of (other) classes.
*
* @param
* the type of the instances to create
*/
public interface Factory
{
/**
* Create a new instance of the respective type
*
* @return the resulting instance
*/
public E create();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy