public class ErrorDialogAdapter extends java.lang.Object implements ErrorListener, java.io.Serializable
Most errors in the com.ibm.as400.vaccess package are reported using ErrorEvents rather than throwing exceptions. An ErrorDialogAdapter object is useful to give users feedback whenever an error occurs.
The component property is used to determine the frame that is to be the parent of message dialogs. If no component is set, then a default frame will be used.
The following example creates an explorer pane filled with the contents of a directory in the integrated file system. It will use an ErrorDialogAdapter object to display all errors in a message dialog.
// Set up the explorer pane. AS400ExplorerPane explorerPane = new AS400ExplorerPane (); // Set up the explorer pane to display the contents // of a directory. AS400 system = new AS400 ("MySystem", "Userid", "Password"); VIFSDirectory directory = new VIFSDirectory (system, "/myDirectory"); explorerPane.setRoot (directory); // Add the explorer pane to a frame. frame.add (explorerPane); // Set up the error dialog adapter. explorerPane.addErrorListener (new ErrorDialogAdapter (frame));
Constructor and Description |
---|
ErrorDialogAdapter()
Deprecated.
Constructs an ErrorDialogAdapter object.
|
ErrorDialogAdapter(java.awt.Component component)
Deprecated.
Constructs an ErrorDialogAdapter object.
|
ErrorDialogAdapter(java.awt.Component component,
boolean modal)
Deprecated.
Constructs an ErrorDialogAdapter object.
|
Modifier and Type | Method and Description |
---|---|
void |
errorOccurred(ErrorEvent event)
Deprecated.
Invoked when an error has occurred.
|
java.awt.Component |
getComponent()
Deprecated.
Returns the component that determines the parent frame
for dialogs.
|
void |
setComponent(java.awt.Component component)
Deprecated.
Sets the component that determines the parent frame
for dialogs.
|
public ErrorDialogAdapter()
public ErrorDialogAdapter(java.awt.Component component)
component
- Determines the parent frame for
dialogs.public ErrorDialogAdapter(java.awt.Component component, boolean modal)
component
- Determines the parent frame for
dialogs.modal
- Specifies whether this dialog should be modal.public void errorOccurred(ErrorEvent event)
errorOccurred
in interface ErrorListener
event
- The event.public java.awt.Component getComponent()
public void setComponent(java.awt.Component component)
component
- The component, or null to use a
default frame.