Interface BasicExpressionRenderer
- All Known Subinterfaces:
ExpressionRenderer
- All Known Implementing Classes:
AlternateExpressionRenderer,DefaultExpressionRenderer
public interface BasicExpressionRenderer
An interface defining methods for the basic expression renderer.
Supported API: true
Extendable: true
Supported API: true
Extendable: true
-
Method Summary
Modifier and TypeMethodDescriptiongetBasicExpression(Set<ChoiceFilterData>[] choiceData, boolean isNameFormat) Returns the display string for the basic expression represented by a two-element array where the first element is a set of beans for included choices and the second element is a set of beans for excluded choices.getBasicExpressionTooltip(Set<ChoiceFilterData>[] choiceData, boolean isNameFormat) Returns the tool tip string for the basic expression represented by a two-element array where the first element is a set of beans for included choices and the second element is a set of beans for excluded choices.booleanDetermines whether expression data utilities show the tool tip.
-
Method Details
-
getBasicExpression
String getBasicExpression(Set<ChoiceFilterData>[] choiceData, boolean isNameFormat) throws WTException Returns the display string for the basic expression represented by a two-element array where the first element is a set of beans for included choices and the second element is a set of beans for excluded choices.- Parameters:
choiceData- sets of choice data for included and excluded choices of the basic expressionisNameFormat- true if you want to display name of choices- Returns:
- the display string for the basic expression
- Throws:
WTException-
Supported API: true
-
getBasicExpressionTooltip
String getBasicExpressionTooltip(Set<ChoiceFilterData>[] choiceData, boolean isNameFormat) throws WTException Returns the tool tip string for the basic expression represented by a two-element array where the first element is a set of beans for included choices and the second element is a set of beans for excluded choices.- Parameters:
choiceData- sets of choice data for included and excluded choices of the basic expressionisNameFormat- true if you want to display name of choices- Returns:
- the tool tip string for the basic expression
- Throws:
WTException-
Supported API: true
-
showTooltip
Determines whether expression data utilities show the tool tip.- Returns:
- true if the tool tip needs to be shown.
- Throws:
WTException-
Supported API: true
-