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

net.anotheria.asg.generator.meta.MetaEnumerationProperty Maven / Gradle / Ivy

There is a newer version: 4.3.0
Show newest version
package net.anotheria.asg.generator.meta;

/**
 * A property of enumeration type.
 *
 * @author another
 * @version $Id: $Id
 */
public class MetaEnumerationProperty extends MetaProperty{
	
	/**
	 * Name of the enumeration.
	 */
	private String enumeration;
	
	/**
	 * Creates a new enumeration property.
	 *
	 * @param aName a {@link java.lang.String} object.
	 * @param aType a {@link net.anotheria.asg.generator.meta.MetaProperty.Type} object.
	 */
	public MetaEnumerationProperty(String aName, MetaProperty.Type aType){
		super(aName, aType);
	}

	/**
	 * 

Getter for the field enumeration.

* * @return name of the enumeration */ public String getEnumeration() { return enumeration; } /** *

Setter for the field enumeration.

* * @param string name of enumeration */ public void setEnumeration(String string) { enumeration = string; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy