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

com.tobedevoured.modelcitizen.field.ConstructorCallback Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 0.8.3
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy