Class LoggingErrorHandling
java.lang.Object
org.eclipse.nebula.widgets.nattable.edit.editor.AbstractEditErrorHandler
org.eclipse.nebula.widgets.nattable.edit.config.LoggingErrorHandling
- All Implemented Interfaces:
IEditErrorHandler
Error handling strategy that simply writes conversion/validation errors to
the log.
-
Field Summary
Fields inherited from class org.eclipse.nebula.widgets.nattable.edit.editor.AbstractEditErrorHandler
underlyingErrorHandler -
Constructor Summary
ConstructorsConstructorDescriptionCreate a newLoggingErrorHandlingwith no underlyingIEditErrorHandlerLoggingErrorHandling(IEditErrorHandler underlyingErrorHandler) Create a newLoggingErrorHandlingusing the givenIEditErrorHandleras the underlying to allow chaining of error handling. -
Method Summary
Modifier and TypeMethodDescriptionvoiddisplayError(ICellEditor cellEditor, Exception e) If an error occurs on conversion/validation of data, this method will be called for showing that error to the user.Methods inherited from class org.eclipse.nebula.widgets.nattable.edit.editor.AbstractEditErrorHandler
displayError, removeError
-
Constructor Details
-
LoggingErrorHandling
public LoggingErrorHandling()Create a newLoggingErrorHandlingwith no underlyingIEditErrorHandler -
LoggingErrorHandling
Create a newLoggingErrorHandlingusing the givenIEditErrorHandleras the underlying to allow chaining of error handling.- Parameters:
underlyingErrorHandler- The underlyingIEditErrorHandler
-
-
Method Details
-
displayError
If an error occurs on conversion/validation of data, this method will be called for showing that error to the user. Usually the message contained within the givenExceptionwill be shown to the user.This implementation will call its underlying
IEditErrorHandler. After the error is handled by its underlyingIEditErrorHandler, the error will be logged as a warning.- Specified by:
displayErrorin interfaceIEditErrorHandler- Overrides:
displayErrorin classAbstractEditErrorHandler- Parameters:
cellEditor- TheICellEditoron which the conversion/validation error occurred. Needed to add error styling or special handling.e- TheExceptionthat contains information about the conversion/validation error. Used to show a more detailed description on the error to the user.
-