All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.beans.script.ide.SCRIDEBrowser

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----java.awt.Panel
                           |
                           +----com.ibm.beans.widgets.TreePanel
                                   |
                                   +----com.ibm.beans.script.ide.SCRIDEBrowser

public class SCRIDEBrowser
extends TreePanel
The Scripting IDE Browser class is created by a SCRIDE object. The class is instantiated and used for browsing the SCRIDEInstance objects and their associated heirarchy.

See Also:
SCRIDE, SCRIDEInstance, SCRIDEClassInfo

Constructor Index

 o SCRIDEBrowser()
Creates a Scripting IDE Browser.

Method Index

 o initialize(SCRIDE)
Initializes the SCRIDEBrowser.
 o instanceAdded(SCRIDEComponentEvent)
Identifies that an instance was added to the SCRIDEComponent.
 o instanceRemoved(SCRIDEComponentEvent)
Identifies that an instance was removed from the SCRIDEComponent.
 o instanceRenamed(SCRIDEComponentEvent)
Identifies that an instance was renamed to the SCRIDEComponent.
 o readExternal(ObjectInput)
Reads the object in.
 o terminate(SCRIDE)
Terminates the browser.
 o writeExternal(ObjectOutput)
Writes the object out.

Constructors

 o SCRIDEBrowser
 public SCRIDEBrowser()
Creates a Scripting IDE Browser.

Methods

 o initialize
 public void initialize(SCRIDE newScrIDE)
Initializes the SCRIDEBrowser. After construction or serialization the initialize function must be called before other methods can be used on the SCRIDEBrowser.

Parameters:
newScrIDE - The Scripting IDE that created the browser.
 o terminate
 public void terminate(SCRIDE scrIDE)
Terminates the browser. This method should be called when the browser is destroyed. This method allows the browser to remove itself as a listener to SCRIDEComponentEvents.

Parameters:
scrIDE - The Scripting IDE that created the browser.
See Also:
SCRIDEComponentEvent
 o instanceAdded
 public synchronized void instanceAdded(SCRIDEComponentEvent event)
Identifies that an instance was added to the SCRIDEComponent. It is called by the SCRIDEComponent when creating an instance.

Parameters:
event - The SCRIDEComponentEvent.
See Also:
SCRIDEInstance
 o instanceRenamed
 public synchronized void instanceRenamed(SCRIDEComponentEvent event)
Identifies that an instance was renamed to the SCRIDEComponent. It is called by the SCRIDEComponent when renaming an instance.

Parameters:
event - The SCRIDEComponentEvent.
See Also:
SCRIDEInstance
 o instanceRemoved
 public synchronized void instanceRemoved(SCRIDEComponentEvent event)
Identifies that an instance was removed from the SCRIDEComponent. It is called by the SCRIDEComponent when removing an instance.

Parameters:
event - The SCRIDEComponentEvent.
See Also:
SCRIDEInstance
 o writeExternal
 public void writeExternal(ObjectOutput out) throws IOException
Writes the object out.

Parameters:
out - The output stream.
Throws: IOException
A streaming output error.
Overrides:
writeExternal in class TreePanel
 o readExternal
 public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
Reads the object in.

Parameters:
in - The input stream.
Throws: IOException
A streaming input error.
Throws: ClassNotFoundException
Class not found during streaming
Overrides:
readExternal in class TreePanel

All Packages  Class Hierarchy  This Package  Previous  Next  Index