Interface IComboSelectParameterization
-
- All Superinterfaces:
IParameterization
- All Known Subinterfaces:
IBooleanComboParameterization,IEnumParameterization,IEnumRadioGroupParameterization
- All Known Implementing Classes:
BooleanComboParameterization,EnumParameterization,EnumRadioGroupParameterization,IComboSelectParameterization.ComboSelectParameterization
public interface IComboSelectParameterization extends IParameterization
The parameterization forAbstractDtComboSelectComponents.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classIComboSelectParameterization.ComboSelectParameterizationThe implementation ofIComboSelectParameterization.
-
Field Summary
Fields Modifier and Type Field Description static IComboSelectParameterizationCLEAR_ACTION_ALLOWEDThe parameterization that specifies that clear action in the component should be turn on.static IComboSelectParameterizationDEFAULTThe default parameterization forAbstractDtComboSelectComponentsuccessors.static IComboSelectParameterizationQUICK_SEARCH_ALLOWEDThe parameterization that specifies that quick search in the component should be turn on without clear action.static IComboSelectParameterizationQUICK_SEARCH_ALLOWED_AND_CLEAR_ACTIONThe parameterization that specifies that quick search in the component should be turn on and clear action too.-
Fields inherited from interface com._1c.g5.aef2.components.IParameterization
VOID
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanhasClearAction()Returnstrueif the component must have the "Clear" action.booleanisQuickSearchAllowed()
-
-
-
Field Detail
-
CLEAR_ACTION_ALLOWED
static final IComboSelectParameterization CLEAR_ACTION_ALLOWED
The parameterization that specifies that clear action in the component should be turn on.
-
QUICK_SEARCH_ALLOWED
static final IComboSelectParameterization QUICK_SEARCH_ALLOWED
The parameterization that specifies that quick search in the component should be turn on without clear action.
-
QUICK_SEARCH_ALLOWED_AND_CLEAR_ACTION
static final IComboSelectParameterization QUICK_SEARCH_ALLOWED_AND_CLEAR_ACTION
The parameterization that specifies that quick search in the component should be turn on and clear action too.
-
DEFAULT
static final IComboSelectParameterization DEFAULT
The default parameterization forAbstractDtComboSelectComponentsuccessors.
-
-