Interface IScriptingStyleTemplate
-
- All Known Implementing Classes:
AbstractJavascriptStyleFactory.JavascriptScriptingStyleTemplate
,AbstractScriptingTemplate
,GroovyStyleFactory.GroovyScriptingStyleTemplate
public interface IScriptingStyleTemplate
Represents a scripting style template.- Since:
- 8.1.0
- Version:
- $Revision: 25303 $ $Date: 2022-10-22 22:48:02 -0300 (Sat, 22 Oct 2022) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getClassCallString(java.lang.Class<?> clazz)
Returns the string used to call the class.java.lang.String
getControlsByIdVariableName()
Returns the controls by id map variable name.java.lang.String
getControlsByTypeVariableName()
Returns the controls by type map variable name.java.lang.String
getDocumentVariableName()
Returns theDocument
variable name.java.lang.String
getELVariableName()
Returns theIELResolver
variable name.java.lang.String
getEndScriptTag()
Returns the end script tag.java.lang.String
getEscapedString(java.lang.String value)
Returns the escaped version of the given string.java.lang.String
getOutVariableName()
Returns the output variable name.java.lang.String
getRequestVariableName()
Returns the request variable name.java.lang.String
getResponseVariableName()
Returns the response variable name.java.lang.String
getRowsListVariableName()
Returns the rows list variable name.java.lang.String
getStartScriptTag()
Returns the start script tag.java.lang.String
getStartValueTag()
Returns the start value tag.java.lang.String
getUrlProcessorVariableName()
Returns the variable name for anIScriptingStyleURLProcessor
.java.lang.String
getXPathVariableName()
Returns theIXPath
variable name.
-
-
-
Method Detail
-
getStartValueTag
java.lang.String getStartValueTag()
Returns the start value tag.- Returns:
- the start value tag.
- Since:
- 8.1.0
-
getStartScriptTag
java.lang.String getStartScriptTag()
Returns the start script tag.- Returns:
- the start script tag.
- Since:
- 8.1.0
-
getEndScriptTag
java.lang.String getEndScriptTag()
Returns the end script tag.- Returns:
- the end script tag.
- Since:
- 8.1.0
-
getOutVariableName
java.lang.String getOutVariableName()
Returns the output variable name.- Returns:
- the output variable name.
- Since:
- 8.1.0
-
getRequestVariableName
java.lang.String getRequestVariableName()
Returns the request variable name.- Returns:
- the request variable name.
- Since:
- 8.1.0
-
getResponseVariableName
java.lang.String getResponseVariableName()
Returns the response variable name.- Returns:
- the response variable name.
- Since:
- 8.1.0
-
getELVariableName
java.lang.String getELVariableName()
Returns theIELResolver
variable name.- Returns:
- the
IELResolver
variable name. - Since:
- 8.1.0
-
getDocumentVariableName
java.lang.String getDocumentVariableName()
Returns theDocument
variable name.- Returns:
- the
Document
variable name. - Since:
- 8.1.0
-
getXPathVariableName
java.lang.String getXPathVariableName()
Returns theIXPath
variable name.- Returns:
- the
IXPath
variable name. - Since:
- 8.1.0
-
getEscapedString
java.lang.String getEscapedString(java.lang.String value)
Returns the escaped version of the given string.- Parameters:
value
- the string to be escaped.- Returns:
- the escaped version of the given string.
- Since:
- 8.1.0
-
getClassCallString
java.lang.String getClassCallString(java.lang.Class<?> clazz)
Returns the string used to call the class.- Parameters:
clazz
- the class that will be called.- Returns:
- the qualified name with the proper modifications needed to call the class.
- Since:
- 8.1.0
-
getControlsByIdVariableName
java.lang.String getControlsByIdVariableName()
Returns the controls by id map variable name.- Returns:
- the controls by id map variable name.
- Since:
- 10.3.0
-
getControlsByTypeVariableName
java.lang.String getControlsByTypeVariableName()
Returns the controls by type map variable name.- Returns:
- the controls by type map variable name.
- Since:
- 10.3.0
-
getRowsListVariableName
java.lang.String getRowsListVariableName()
Returns the rows list variable name.- Returns:
- the rows list variable name.
- Since:
- 10.3.0
-
getUrlProcessorVariableName
java.lang.String getUrlProcessorVariableName()
Returns the variable name for anIScriptingStyleURLProcessor
.- Since:
- 15.0.0
-
-