Interface ISpinnerParameterization<T extends Number & Comparable<T>>
- 
- Type Parameters:
- T- Spinner value type.
 - All Superinterfaces:
- IParameterization
 - All Known Implementing Classes:
- SpinnerParameterization
 
 public interface ISpinnerParameterization<T extends Number & Comparable<T>> extends IParameterization IParameterizationfor spinner component.
- 
- 
Field Summary- 
Fields inherited from interface com._1c.g5.aef2.components.IParameterizationVOID
 
- 
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ValueChangeApplygetApplyValueChange()Returns aplly control value change.TgetMaximum()Returns the maximum spinner value.TgetMinimum()Returns the minimum spinner value.voidsetMaximum(T max)Sets the maximum of spinner.voidsetMinimum(T min)Sets the minimum of spinner.
 
- 
- 
- 
Method Detail- 
setMinimumvoid setMinimum(T min) Sets the minimum of spinner.- Parameters:
- min- the minimum value.
 
 - 
setMaximumvoid setMaximum(T max) Sets the maximum of spinner.- Parameters:
- min- the maximum value.
 
 - 
getMinimumT getMinimum() Returns the minimum spinner value.- Returns:
- the minimum.
 
 - 
getMaximumT getMaximum() Returns the maximum spinner value.- Returns:
- the maximum.
 
 - 
getApplyValueChangeValueChangeApply getApplyValueChange() Returns aplly control value change.- Returns:
- the applyValueChange, cannot be null
 
 
- 
 
-