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

net.anotheria.asg.generator.view.meta.MetaEmptyElement Maven / Gradle / Ivy

package net.anotheria.asg.generator.view.meta;

/**
 * An empty element in a view.
 *
 * @author another
 * @version $Id: $Id
 */
public class MetaEmptyElement extends MetaViewElement{
	/**
	 * Creates a new empty element.
	 */
	public MetaEmptyElement(){
		super(null);
	}
	
	/** {@inheritDoc} */
	@Override public String toString(){
		return "empty";
	}
	
	/** {@inheritDoc} */
	@Override public boolean isComparable(){
		return false;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy