/* * Created on Aug 24, 2005 */ package org.seqcode.gseutils; /** * @author tdanford */ public interface Factory<X> { public X createObject(); }