![JAR search and dependency download from the Maven repository](/logo.png)
net.anotheria.asg.generator.meta.MetaEnumerationProperty Maven / Gradle / Ivy
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