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

net.anotheria.util.content.element.StaticElement Maven / Gradle / Ivy

package net.anotheria.util.content.element;

/**
 * StaticElement as subclass of ContentElement.
 *
 * @author lrosenberg
 * @version $Id: $Id
 */
public class StaticElement extends ContentElement {

	/**
	 * Constructor.
	 *
	 * @param aElementText string text
	 */
	public StaticElement(String aElementText) {
		super(aElementText);
	}

	/** {@inheritDoc} */
	@Override
	public boolean isDynamic() {
		return false;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy