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>
IComboParameterizationimplementation.
-
-
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.StringgetLabel()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 benullitems- the items in combo, cannot benull
-
-
Method Detail
-
getLabel
public String getLabel()
Description copied from interface:ILabeledParametrizationReturns the label.- Specified by:
getLabelin interfaceILabeledParametrization- Returns:
- the label.
-
getItems
public Collection<T> getItems()
Description copied from interface:IComboLabeledParameterizationReturns items for combo.- Specified by:
getItemsin interfaceIComboLabeledParameterization<T>- Returns:
- items.
-
-