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

se.culvertsoft.mgen.javapack.classes.Ctor Maven / Gradle / Ivy

There is a newer version: 0.2.5
Show newest version
package se.culvertsoft.mgen.javapack.classes;

/**
 * An interface that represents a way to default construct an instance of an
 * MGen class. Registered in class registries to facilitate runtime
 * instantiation of object of generated classes primarily during
 * deserialization.
 */
public interface Ctor {

	/**
	 * A method for default instantiating an object of a particular generated
	 * MGen class.
	 * 
	 * @return A new default constructed object of a particular generated MGen
	 *         class.
	 */
	public MGenBase create();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy