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
-
DataInputWizard()
- Create a DataInputWizard.
-
actionPerformed(ActionEvent)
- Invoked when an action events occurs.
-
getFileSchema()
- Get the FileSchema being viewed.
-
getSelectedItem()
- Get the currently selected schema item, based upon the
currently selected view component in the selection manager.
-
lostOwnership(Clipboard, Transferable)
- Notifies this object that it is no longer the owner of the contents
of the clipboard.
-
main(String[])
- Create a DataInputWizard instance and display it within an AWT Frame.
-
processWindowEvent(WindowEvent)
- Process window events occurring on this window.
-
propertyChange(PropertyChangeEvent)
- Called when a bound property is changed.
-
setFileSchema(FileSchema)
- Set the new FileSchema to view.
-
setSelectedItem(SchemaItem)
- Set the currently selected schema item.
-
setVisible(boolean)
- Show or hide this component, depending on the boolean flag.
DataInputWizard
public DataInputWizard()
- Create a DataInputWizard.
getFileSchema
public FileSchema getFileSchema()
- Get the FileSchema being viewed.
- Returns:
- The FileSchema being viewed.
setFileSchema
public void setFileSchema(FileSchema newFileSchema)
- Set the new FileSchema to view.
- Parameters:
- fileSchema - The new FileSchema to view.
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.
setSelectedItem
public void setSelectedItem(SchemaItem newSelection)
- Set the currently selected schema item.
- Parameters:
- newSelection - The new selected schema item.
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
processWindowEvent
protected void processWindowEvent(WindowEvent e)
- Process window events occurring on this window.
- Parameters:
- e - A WindowEvent.
- Overrides:
- processWindowEvent in class Window
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.
actionPerformed
public void actionPerformed(ActionEvent e)
- Invoked when an action events occurs.
- Parameters:
- e - An ActionEvent.
propertyChange
public void propertyChange(PropertyChangeEvent evt)
- Called when a bound property is changed.
- Parameters:
- evt - the property change event.
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