![JAR search and dependency download from the Maven repository](/logo.png)
com.natpryce.makeiteasy.Instantiator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of make-it-easy Show documentation
Show all versions of make-it-easy Show documentation
A tiny framework that makes it easy to write Test Data Builders in Java
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