Class ComboLabeledParameterization<T>
- java.lang.Object
-
- com._1c.g5.aef2.standard.parameterization.ComboLabeledParameterization<T>
-
- Type Parameters:
T
- the type of the combo labeled objects.
- All Implemented Interfaces:
IParameterization
,IComboLabeledParameterization<T>
,ILabeledParametrization
public class ComboLabeledParameterization<T> extends Object implements IComboLabeledParameterization<T>
IComboParameterization
implementation.
-
-
Field Summary
-
Fields inherited from interface com._1c.g5.aef2.standard.parameterization.ILabeledParametrization
NULL_LABEL
-
Fields inherited from interface com._1c.g5.aef2.components.IParameterization
VOID
-
-
Constructor Summary
Constructors Constructor Description ComboLabeledParameterization(String label, Collection<T> items)
Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<T>
getItems()
Returns items for combo.String
getLabel()
Returns the label.
-
-
-
Constructor Detail
-
ComboLabeledParameterization
public ComboLabeledParameterization(String label, Collection<T> items)
Creates a new instance.- Parameters:
label
- label of the special combo, cannot benull
items
- the items in combo, cannot benull
-
-
Method Detail
-
getLabel
public String getLabel()
Description copied from interface:ILabeledParametrization
Returns the label.- Specified by:
getLabel
in interfaceILabeledParametrization
- Returns:
- the label.
-
getItems
public Collection<T> getItems()
Description copied from interface:IComboLabeledParameterization
Returns items for combo.- Specified by:
getItems
in interfaceIComboLabeledParameterization<T>
- Returns:
- items.
-
-