Interface HasConstrainedValue<T>
-
public interface HasConstrainedValue<T>Editor that accepts a set of predefined values.
- Since:
- 0.4.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetAcceptableValues(T acceptableValues)Sets acceptable values for the editor.
-
-
-
Method Detail
-
setAcceptableValues
@Ignore void setAcceptableValues(T acceptableValues)
Sets acceptable values for the editor.
If no acceptable values set BEFORE editing a T instance, the editor can either disable /remove/modify the editor's value/s or just not edit any value.
- Parameters:
acceptableValues- Acceptable values for the editor.
-
-