|
Components |
|
| |||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use GenericErrorHandlerInterface | |
---|---|
com.sas.servlet.tbeans.form | Provides classes and interfaces for all form element Transformation Beans. |
com.sas.swing.adapters | Miscellaneous listener adapters to handle various user interface events. |
com.sas.swing.visuals | com.sas.visuals AWT user interface components ported to swing that are not already provided by JavaSoft. |
com.sas.swing.visuals.tableview | Provides a set of swing classes for viewing and manipulating relational data. |
com.sas.swing.visuals.util | Utility classes for com.sas.swing.visuals . |
com.sas.util | Utility classes for com.sas.servlet. |
com.sas.util.errorhandlers | An interface and class for general purpose error handlers, normally bound to text fields. |
com.sas.util.validators | Interface and some implementations of input data validators. |
Uses of GenericErrorHandlerInterface in com.sas.servlet.tbeans.form |
---|
Methods in com.sas.servlet.tbeans.form that return GenericErrorHandlerInterface | |
---|---|
GenericErrorHandlerInterface |
BaseFormElement.getErrorHandler()
Returns the errorHandler or null if none is set |
Methods in com.sas.servlet.tbeans.form with parameters of type GenericErrorHandlerInterface | |
---|---|
void |
BaseFormElement.setErrorHandler(GenericErrorHandlerInterface errorHandler)
Sets the errorHandler for validation. |
Uses of GenericErrorHandlerInterface in com.sas.swing.adapters |
---|
Fields in com.sas.swing.adapters declared as GenericErrorHandlerInterface | |
---|---|
protected GenericErrorHandlerInterface |
PopupMenuAdapter.errHandler
|
Methods in com.sas.swing.adapters that return GenericErrorHandlerInterface | |
---|---|
GenericErrorHandlerInterface |
PopupMenuAdapter.getGenericErrorHandler()
Get the error handler used by all commands that implement the SupportsGenericErrorHandlerInterface. |
Methods in com.sas.swing.adapters with parameters of type GenericErrorHandlerInterface | |
---|---|
void |
PopupMenuAdapter.setGenericErrorHandler(GenericErrorHandlerInterface errorHandler)
Set the error handler used by all commands that implement the SupportsGenericErrorHandlerInterface. |
Uses of GenericErrorHandlerInterface in com.sas.swing.visuals |
---|
Fields in com.sas.swing.visuals declared as GenericErrorHandlerInterface | |
---|---|
protected GenericErrorHandlerInterface |
SpinBox.errorHandler
|
Methods in com.sas.swing.visuals that return GenericErrorHandlerInterface | |
---|---|
GenericErrorHandlerInterface |
SpinBox.getErrorHandler()
Returns the error handler being used for the validator on the text in the textField of the SpinBox |
Methods in com.sas.swing.visuals with parameters of type GenericErrorHandlerInterface | |
---|---|
void |
SpinBox.setErrorHandler(GenericErrorHandlerInterface newErrorHandler)
Set the errorHandler for the validator of the text in the textField of the SpinBox. |
Uses of GenericErrorHandlerInterface in com.sas.swing.visuals.tableview |
---|
Fields in com.sas.swing.visuals.tableview declared as GenericErrorHandlerInterface | |
---|---|
protected GenericErrorHandlerInterface |
TableView.genericErrorHandler
|
Methods in com.sas.swing.visuals.tableview that return GenericErrorHandlerInterface | |
---|---|
GenericErrorHandlerInterface |
TableView.getGenericErrorHandler()
Returns the error handler that the TableView uses to handle various errors it catches. |
GenericErrorHandlerInterface |
DefaultTableCellEditor.getGenericErrorHandler()
Returns the error handler that the editor uses to handle various errors it catches when either it tries to construct the value to set on the model or validate the value. |
Methods in com.sas.swing.visuals.tableview with parameters of type GenericErrorHandlerInterface | |
---|---|
void |
TableView.setGenericErrorHandler(GenericErrorHandlerInterface errorHandler)
Sets an error handler to be used on the TableView, this errorhandler will be used to handle various errors the table catches. |
void |
DefaultTableCellEditor.setGenericErrorHandler(GenericErrorHandlerInterface errorHandler)
Sets an error handler to be used on the editor, this errorhandler will be used to handle various errors the editor catches when trying to construct the value to set on the model or when it validates a value. |
Uses of GenericErrorHandlerInterface in com.sas.swing.visuals.util |
---|
Methods in com.sas.swing.visuals.util that return GenericErrorHandlerInterface | |
---|---|
GenericErrorHandlerInterface |
JTextFieldValidator.getErrorHandler()
Returns the error handler used to notify the user of an invalid value entered in the JTextField. |
Methods in com.sas.swing.visuals.util with parameters of type GenericErrorHandlerInterface | |
---|---|
static JTextFieldValidator |
ValidationUtil.addJTextFieldValidator(javax.swing.JTextField textField,
ValidationInterface validator,
GenericErrorHandlerInterface errorHandler)
Adds a validator to the JTextField, the validator being the instance of the ValidationInterface passed in. |
void |
JTextFieldValidator.setErrorHandler(GenericErrorHandlerInterface errorHandler)
Sets the error handler used to notify the user of an invalid value entered in the JTextField. |
static boolean |
ValidationUtil.validate(java.lang.Object obj,
ValidationInterface validator,
GenericErrorHandlerInterface errorHandler)
Validates the value(text) in the object with the validator being the instance of ValidationInterface passed in. |
Constructors in com.sas.swing.visuals.util with parameters of type GenericErrorHandlerInterface | |
---|---|
JTextFieldValidator(javax.swing.JTextField textField,
ValidationInterface validator,
GenericErrorHandlerInterface errorHandler)
Creates a JTextFieldValidator with the ValidationInterface being the validator and the errorHandler used to handle invalid values entered in the JTextField, as evaluated by the validator. |
Uses of GenericErrorHandlerInterface in com.sas.util |
---|
Fields in com.sas.util declared as GenericErrorHandlerInterface | |
---|---|
protected GenericErrorHandlerInterface |
CommandDispatcher.genericErrHandler
|
Methods in com.sas.util that return GenericErrorHandlerInterface | |
---|---|
GenericErrorHandlerInterface |
CommandDispatcher.getGenericErrorHandler()
Get the generic error handler that is set on the command if it implements the SupportsGenericErrorHandlerInterface. |
Methods in com.sas.util with parameters of type GenericErrorHandlerInterface | |
---|---|
void |
CommandDispatcher.setGenericErrorHandler(GenericErrorHandlerInterface genericErrorHandler)
Set the generic error handler that is set on the command if it implements the SupportsGenericErrorHandlerInterface. |
Uses of GenericErrorHandlerInterface in com.sas.util.errorhandlers |
---|
Classes in com.sas.util.errorhandlers that implement GenericErrorHandlerInterface | |
---|---|
class |
JOptionPaneErrorHandler
JOptionPaneErrorHandler is an error handler which displays a JOptionPane when handleError() is called. |
class |
PrintlnErrorHandler
PrintlnErrorHandler is an error handler which prints the message to System.err or the specified stream when handleError() is called. |
Methods in com.sas.util.errorhandlers that return GenericErrorHandlerInterface | |
---|---|
GenericErrorHandlerInterface |
SupportsGenericErrorHandlerInterface.getGenericErrorHandler()
|
Methods in com.sas.util.errorhandlers with parameters of type GenericErrorHandlerInterface | |
---|---|
void |
SupportsGenericErrorHandlerInterface.setGenericErrorHandler(GenericErrorHandlerInterface errorHandler)
|
Uses of GenericErrorHandlerInterface in com.sas.util.validators |
---|
Methods in com.sas.util.validators that return GenericErrorHandlerInterface | |
---|---|
GenericErrorHandlerInterface |
GenericValidatorInterface.getErrorHandler()
|
Methods in com.sas.util.validators with parameters of type GenericErrorHandlerInterface | |
---|---|
void |
GenericValidatorInterface.setErrorHandler(GenericErrorHandlerInterface errorHandler)
|
|
Components |
|
| |||||||||||
PREV NEXT | FRAMES NO FRAMES |