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

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

The newest version!
package net.anotheria.asg.generator.meta;

/**
 * TODO please remined another to comment this class
 *
 * @author another
 * @version $Id: $Id
 */
public class MetaContainerProperty extends MetaProperty{
	
	
	/**
	 * 

Constructor for MetaContainerProperty.

* * @param name a {@link java.lang.String} object. */ public MetaContainerProperty(String name){ super(name, MetaProperty.Type.INT); } /** *

Constructor for MetaContainerProperty.

* * @param name a {@link java.lang.String} object. * @param type a {@link net.anotheria.asg.generator.meta.MetaProperty.Type} object. */ public MetaContainerProperty(String name, MetaProperty.Type type){ super(name, type); } /** *

getContainerEntryName.

* * @return a {@link java.lang.String} object. */ public String getContainerEntryName(){ return getClass().getName().substring(getClass().getName().lastIndexOf('.')+1); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy