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

org.got5.tapestry5.jquery.utils.TagLocation Maven / Gradle / Ivy

The newest version!
package org.got5.tapestry5.jquery.utils;

public enum TagLocation {

	BEFORE("before"), AFTER("after");	

	private String value;
	
	TagLocation(String value) {
		this.value = value;
	}

	/* (non-Javadoc)
	 * @see net.atos.kawwaportal.components.data.TagLocation#getValue()
	 */
	public String getValue() {
		return value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy