Interface IScriptingStyleTemplate
-
- All Known Implementing Classes:
AbstractScriptingTemplate
,GroovyStyleFactory.GroovyScriptingStyleTemplate
,JavascriptStyleFactory.JavascriptScriptingStyleTemplate
public interface IScriptingStyleTemplate
Represents a scripting style template.- Since:
- 8.1.0
- Version:
- $Revision: 20807 $ $Date: 2017-11-30 17:08:51 -0200 (Thu, 30 Nov 2017) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getClassCallString(Class<?> clazz)
Returns the string used to call the class.String
getControlsByIdVariableName()
Returns the controls by id map variable name.String
getControlsByTypeVariableName()
Returns the controls by type map variable name.String
getDocumentVariableName()
Returns theDocument
variable name.String
getELVariableName()
Returns theIELResolver
variable name.String
getEndScriptTag()
Returns the end script tag.String
getEscapedString(String value)
Returns the escaped version of the given string.String
getOutVariableName()
Returns the output variable name.String
getRequestVariableName()
Returns the request variable name.String
getResponseVariableName()
Returns the response variable name.String
getRowsListVariableName()
Returns the rows list variable name.String
getStartScriptTag()
Returns the start script tag.String
getStartValueTag()
Returns the start value tag.String
getXPathVariableName()
Returns theIXPath
variable name.
-
-
-
Method Detail
-
getStartValueTag
String getStartValueTag()
Returns the start value tag.- Returns:
- the start value tag.
- Since:
- 8.1.0
-
getStartScriptTag
String getStartScriptTag()
Returns the start script tag.- Returns:
- the start script tag.
- Since:
- 8.1.0
-
getEndScriptTag
String getEndScriptTag()
Returns the end script tag.- Returns:
- the end script tag.
- Since:
- 8.1.0
-
getOutVariableName
String getOutVariableName()
Returns the output variable name.- Returns:
- the output variable name.
- Since:
- 8.1.0
-
getRequestVariableName
String getRequestVariableName()
Returns the request variable name.- Returns:
- the request variable name.
- Since:
- 8.1.0
-
getResponseVariableName
String getResponseVariableName()
Returns the response variable name.- Returns:
- the response variable name.
- Since:
- 8.1.0
-
getELVariableName
String getELVariableName()
Returns theIELResolver
variable name.- Returns:
- the
IELResolver
variable name. - Since:
- 8.1.0
-
getDocumentVariableName
String getDocumentVariableName()
Returns theDocument
variable name.- Returns:
- the
Document
variable name. - Since:
- 8.1.0
-
getXPathVariableName
String getXPathVariableName()
Returns theIXPath
variable name.- Returns:
- the
IXPath
variable name. - Since:
- 8.1.0
-
getEscapedString
String getEscapedString(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
String getClassCallString(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
String getControlsByIdVariableName()
Returns the controls by id map variable name.- Returns:
- the controls by id map variable name.
- Since:
- 10.3.0
-
getControlsByTypeVariableName
String getControlsByTypeVariableName()
Returns the controls by type map variable name.- Returns:
- the controls by type map variable name.
- Since:
- 10.3.0
-
getRowsListVariableName
String getRowsListVariableName()
Returns the rows list variable name.- Returns:
- the rows list variable name.
- Since:
- 10.3.0
-
-