org.webpieces.templatingdev.api.Token Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-templating-dev-lib Show documentation
Show all versions of http-templating-dev-lib Show documentation
Templating library using groovy as the scripting language
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();
}