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
-
SCRIDEBrowser()
- Creates a Scripting IDE Browser.
-
initialize(SCRIDE)
- Initializes the SCRIDEBrowser.
-
instanceAdded(SCRIDEComponentEvent)
- Identifies that an instance was added to the SCRIDEComponent.
-
instanceRemoved(SCRIDEComponentEvent)
- Identifies that an instance was removed from the SCRIDEComponent.
-
instanceRenamed(SCRIDEComponentEvent)
- Identifies that an instance was renamed to the SCRIDEComponent.
-
readExternal(ObjectInput)
- Reads the object in.
-
terminate(SCRIDE)
- Terminates the browser.
-
writeExternal(ObjectOutput)
- Writes the object out.
SCRIDEBrowser
public SCRIDEBrowser()
- Creates a Scripting IDE Browser.
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.
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
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
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
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
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
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