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 forAbstractDtComboSelectComponent
s.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
IComboSelectParameterization.ComboSelectParameterization
The implementation ofIComboSelectParameterization
.
-
Field Summary
Fields Modifier and Type Field Description static IComboSelectParameterization
CLEAR_ACTION_ALLOWED
The parameterization that specifies that clear action in the component should be turn on.static IComboSelectParameterization
DEFAULT
The default parameterization forAbstractDtComboSelectComponent
successors.static IComboSelectParameterization
QUICK_SEARCH_ALLOWED
The parameterization that specifies that quick search in the component should be turn on without clear action.static 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.-
Fields inherited from interface com._1c.g5.aef2.components.IParameterization
VOID
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
hasClearAction()
Returnstrue
if the component must have the "Clear" action.boolean
isQuickSearchAllowed()
-
-
-
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 forAbstractDtComboSelectComponent
successors.
-
-