com.tobedevoured.modelcitizen.field.ConstructorCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Model Citizen is an annotation based model factory for Java.
A Model is mapped by a Blueprint using annotated fields. Blueprints contain
default values and references to other blueprinted models. The ModelFactory can
create Models based on registered Blueprints. A Model already created can be
passed into the ModelFactory as a Reference Model, which will be used as the basis
for the new Model.
package com.tobedevoured.modelcitizen.field;
import com.tobedevoured.modelcitizen.callback.internal.Constructable;
/**
*
* @author Michael Guymon
* @deprecated for {@link com.tobedevoured.modelcitizen.callback.ConstructorCallback}
*
*/
@Deprecated
public abstract class ConstructorCallback implements Constructable {
public abstract Object createInstance();
}