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

com.natpryce.makeiteasy.Instantiator Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
package com.natpryce.makeiteasy;


/**
 * Instantiates an object, with an initial state specified by some
 * given property values or defaults defined by the implementer of
 * this interface.
 * 
 * @param  the type of object to instantiate
 */
public interface Instantiator {
    /**
     * Instantiates a new object.
     * 
     * @param lookup initialisation property values
     * @return the new object
     */
    T instantiate(PropertyLookup lookup);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy