All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.beans.script.ide.SCRIDEClassInfo

java.lang.Object
   |
   +----com.ibm.beans.script.ide.SCRIDEClassInfo

public class SCRIDEClassInfo
extends Object
The Scripting IDE ClassInfo class is used only when the IDE supplied with this scripting engine is used. The class is used to store class information of each registered object. This information is used by the IDE browser to show methods or properties of each object. An instance of this class is created for each Java class that is registered at form design time. This class is a node of a SCRIDEClassInfo object tree which is starting from the class level. Each node of the tree represents a property, a method, or an event interface of the class.


Constructor Index

 o SCRIDEClassInfo(String)
Creates a new SCRIDEClassInfo object.

Method Index

 o addChild(SCRIDEClassInfo)
Adds a child to SCRIDEClassInfo object.
 o getChildren()
Requests an array of children of this instance.
 o getTitle()
Gets the title string which may be a property name, a method prototype, an event set name, an event method prototype or an exception type.

Constructors

 o SCRIDEClassInfo
 public SCRIDEClassInfo(String title_str)
Creates a new SCRIDEClassInfo object.

Parameters:
title_str - The name of the Java class being registered.

Methods

 o getTitle
 public String getTitle()
Gets the title string which may be a property name, a method prototype, an event set name, an event method prototype or an exception type.

Returns:
The title string.
 o getChildren
 public SCRIDEClassInfo[] getChildren()
Requests an array of children of this instance. Each child is an instance of SCRIDEClassInfo. Children represent the property, method, event set, event method, or exception type.

Returns:
An array of SCRIDEClassInfo objects.
 o addChild
 public void addChild(SCRIDEClassInfo child)
Adds a child to SCRIDEClassInfo object.

Parameters:
child - The child to be added to this instance.

All Packages  Class Hierarchy  This Package  Previous  Next  Index