All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.beans.tools.dataFormatWizard.DataInputWizard

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----java.awt.Window
                           |
                           +----java.awt.Frame
                                   |
                                   +----com.ibm.beans.tools.dataFormatWizard.DataInputWizard

public class DataInputWizard
extends Frame
implements ClipboardOwner, ActionListener, PropertyChangeListener
DataInputWizard is a graphical user interface for creating and editing FileSchema objects.

See Also:
FileSchema

Constructor Index

 o DataInputWizard()
Create a DataInputWizard.

Method Index

 o actionPerformed(ActionEvent)
Invoked when an action events occurs.
 o getFileSchema()
Get the FileSchema being viewed.
 o getSelectedItem()
Get the currently selected schema item, based upon the currently selected view component in the selection manager.
 o lostOwnership(Clipboard, Transferable)
Notifies this object that it is no longer the owner of the contents of the clipboard.
 o main(String[])
Create a DataInputWizard instance and display it within an AWT Frame.
 o processWindowEvent(WindowEvent)
Process window events occurring on this window.
 o propertyChange(PropertyChangeEvent)
Called when a bound property is changed.
 o setFileSchema(FileSchema)
Set the new FileSchema to view.
 o setSelectedItem(SchemaItem)
Set the currently selected schema item.
 o setVisible(boolean)
Show or hide this component, depending on the boolean flag.

Constructors

 o DataInputWizard
 public DataInputWizard()
Create a DataInputWizard.

Methods

 o getFileSchema
 public FileSchema getFileSchema()
Get the FileSchema being viewed.

Returns:
The FileSchema being viewed.
 o setFileSchema
 public void setFileSchema(FileSchema newFileSchema)
Set the new FileSchema to view.

Parameters:
fileSchema - The new FileSchema to view.
 o getSelectedItem
 public SchemaItem getSelectedItem()
Get the currently selected schema item, based upon the currently selected view component in the selection manager.

Returns:
The currently selected schema item, or null if no schema item is currently selected.
 o setSelectedItem
 public void setSelectedItem(SchemaItem newSelection)
Set the currently selected schema item.

Parameters:
newSelection - The new selected schema item.
 o setVisible
 public void setVisible(boolean visible)
Show or hide this component, depending on the boolean flag. Also creates a scrolled schema panel and a menu bar for this component, if it is being shown, and they do not yet exist.

Parameters:
visible - If true, show this component. Otherwise, hide this component.
Overrides:
setVisible in class Component
 o processWindowEvent
 protected void processWindowEvent(WindowEvent e)
Process window events occurring on this window.

Parameters:
e - A WindowEvent.
Overrides:
processWindowEvent in class Window
 o lostOwnership
 public void lostOwnership(Clipboard clipboard,
                           Transferable contents)
Notifies this object that it is no longer the owner of the contents of the clipboard.

Parameters:
clipboard - The clipboard that is no longer owned.
contents - The contents which this owner had placed on the clipboard.
 o actionPerformed
 public void actionPerformed(ActionEvent e)
Invoked when an action events occurs.

Parameters:
e - An ActionEvent.
 o propertyChange
 public void propertyChange(PropertyChangeEvent evt)
Called when a bound property is changed.

Parameters:
evt - the property change event.
 o main
 public static void main(String args[])
Create a DataInputWizard instance and display it within an AWT Frame.

Parameters:
args - command-line arguments.

All Packages  Class Hierarchy  This Package  Previous  Next  Index