blob: 51432871e0d2228d4ea5ec091f0173896ccf380b [file] [log] [blame]
/*
* Created on Feb 15, 2004
*
*/
package groovy.swt.factory;
import java.util.Map;
import org.codehaus.groovy.GroovyException;
/**
* @author <a href="mailto:ckl@dacelo.nl">Christiaan ten Klooster </a>
* @version $Revision$
*/
public interface SwtFactory {
/**
* Create a new instance
*/
public Object newInstance(Map properties, Object parent)
throws GroovyException;
}