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

org.webpieces.templatingdev.api.Token Maven / Gradle / Ivy

There is a newer version: 2.1.109
Show newest version
package org.webpieces.templatingdev.api;

public interface Token {

	/**
	 * When you throw an exception, you can add the location in the source by reading from the token it's location
	 */
    String getSourceLocation(boolean dueToError);

	/**
	 * Get's the entire String between #{ and }# including arguments
	 */
    String getCleanValue();

	boolean isEndTag();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy