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

com.zipwhip.util.Factory Maven / Gradle / Ivy

package com.zipwhip.util;

import java.io.Serializable;

/**
 * Created by IntelliJ IDEA.
 * User: Michael
 * Date: Oct 12, 2010
 * Time: 7:26:11 PM
 * 

* An interface for generic factory */ public interface Factory extends Serializable { /** * Create an item via our factory strategy. * * @return the new item that u just created * @throws Exception If it was unable to create an instance */ T create() throws Exception; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy