Package com.uc4.api.prompt
Interface PromptInterfaces.XPath
-
- All Known Implementing Classes:
CheckGroupElement
,CheckListElement
,ComboElement
,RadioGroupElement
,TextElement
- Enclosing interface:
- PromptInterfaces
public static interface PromptInterfaces.XPath
Implemented if the prompt element contains a XPath field.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getXPath()
Returns the XPath expression if XML variables are used as data reference.void
setXPath(java.lang.String xpath)
Sets the XPath expression if XML variables are used as data reference.
-
-
-
Method Detail
-
setXPath
void setXPath(java.lang.String xpath)
Sets the XPath expression if XML variables are used as data reference.- Parameters:
xpath
- XPath/Query expression
-
getXPath
java.lang.String getXPath()
Returns the XPath expression if XML variables are used as data reference.- Returns:
- XPath/Query expression or an empty String if not set.
-
-