Package com.solibri.smc.api.ui
Interface UIRuleParameter
-
- All Superinterfaces:
UIComponent
- All Known Subinterfaces:
UIRadioButtonPanel
,UIRadioButtonPanelHorizontal
,UIRadioButtonPanelVertical
public interface UIRuleParameter extends UIComponent
Defines the UI component for a rule parameter.- Since:
- 9.10.2
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static UIRuleParameter
create(RuleParameter<?> ruleParameter)
Returns a UI rule parameter with the given rule parameter.RuleParameter<?>
getRuleParameter()
Returns the rule parameter of this UIRuleParameter.-
Methods inherited from interface com.solibri.smc.api.ui.UIComponent
getEnabler, setEnabler
-
-
-
-
Method Detail
-
create
static UIRuleParameter create(RuleParameter<?> ruleParameter)
Returns a UI rule parameter with the given rule parameter.- Parameters:
ruleParameter
- the rule parameter- Returns:
- a UI rule parameter with the given rule parameter
- Since:
- 9.10.2
-
getRuleParameter
RuleParameter<?> getRuleParameter()
Returns the rule parameter of this UIRuleParameter.- Returns:
- the rule parameter of this UIRuleParameter
- Since:
- 9.10.2
-
-