Interface IDataValidator
- All Known Implementing Classes:
ContextualDataValidator,DataValidator,DefaultDataValidator,DefaultNumericDataValidator
public interface IDataValidator
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionbooleanbooleanvalidate(ILayerCell cell, IConfigRegistry configRegistry, Object newValue)
-
Field Details
-
ALWAYS_VALID
-
NEVER_VALID
-
-
Method Details
-
validate
- Parameters:
columnIndex- Index of the column being validatedrowIndex- Index of the row being validatednewValue- Value entered through the edit control text box, combo box etc. Note: In case of theTextCellEditorthe text typed in by the user will be converted to the canonical value using theIDisplayConverterbefore it hits this method- Returns:
trueif newValue is valid,falseotherwise.- See Also:
-
validate
- Parameters:
cell- LayerCell which should be validatedconfigRegistry- TheIConfigRegistryused to retrieve contextual information for the cell.newValue- Value entered through the edit control text box, combo box etc. Note: In case of theTextCellEditorthe text typed in by the user will be converted to the canonical value using theIDisplayConverterbefore it hits this method- Returns:
trueif newValue is valid,falseotherwise.- See Also:
-