Package org.webpieces.templatingdev.api
Interface Token
-
- All Known Implementing Classes:
TokenImpl
public interface Token
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetCleanValue()Get's the entire String between #{ and }# including argumentsjava.lang.StringgetSourceLocation(boolean dueToError)When you throw an exception, you can add the location in the source by reading from the token it's locationbooleanisEndTag()
-
-
-
Method Detail
-
getSourceLocation
java.lang.String getSourceLocation(boolean dueToError)
When you throw an exception, you can add the location in the source by reading from the token it's location
-
getCleanValue
java.lang.String getCleanValue()
Get's the entire String between #{ and }# including arguments
-
isEndTag
boolean isEndTag()
-
-