Class IntegerRangeEditorProvider<T extends Number & Comparable<T>>
java.lang.Object
docking.widgets.table.constraint.provider.IntegerEditorProvider<T>
docking.widgets.table.constraint.provider.IntegerRangeEditorProvider<T>
- Type Parameters:
T- the number type of the column (Byte, Short, Integer, or Long)
- All Implemented Interfaces:
EditorProvider<T>
- Direct Known Subclasses:
LongRangeEditorProvider
public class IntegerRangeEditorProvider<T extends Number & Comparable<T>>
extends IntegerEditorProvider<T>
Base class for providing numeric range editors.
-
Field Summary
Fields inherited from class docking.widgets.table.constraint.provider.IntegerEditorProvider
converter -
Method Summary
Modifier and TypeMethodDescriptiongetEditor(ColumnConstraint<T> columnConstraint, ColumnData<T> columnDataSource) Returns an editor initialized to the given columnConstraint.Methods inherited from class docking.widgets.table.constraint.provider.IntegerEditorProvider
parseValue, toString
-
Method Details
-
getEditor
public ColumnConstraintEditor<T> getEditor(ColumnConstraint<T> columnConstraint, ColumnData<T> columnDataSource) Description copied from interface:EditorProviderReturns an editor initialized to the given columnConstraint.- Specified by:
getEditorin interfaceEditorProvider<T extends Number & Comparable<T>>- Overrides:
getEditorin classIntegerEditorProvider<T extends Number & Comparable<T>>- Parameters:
columnConstraint- the constraint whose value is to be edited.columnDataSource- the context of the data in the table.- Returns:
- an editor initialized to the given columnConstraint.
-