All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.beans.script.ide.SCRIDEObjectHandle

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

public abstract class SCRIDEObjectHandle
extends SCRObjectHandle
This class defines the object handle used for connecting with the SCRIDE. It is derived from the SCRObjectHandle.

See Also:
SCRObjectHandle

Constructor Index

 o SCRIDEObjectHandle()
Creates a SCRIDEObjectHandle object.
 o SCRIDEObjectHandle(String, String)
Creates a SCRIDEObjectHandle object.

Method Index

 o createIDEInstance(SCRIDEClassInfo)
Creates the associated SCRIDEInstance object.
 o getIDEInstance()
Gets a SCRIDEInstance object associated with a registered Java object.
 o init(SCRIDERegisteredClass)
Initializes the SCRIDEObjectHandle object.
 o putClassInfo(SCRIDEClassInfo)
Sets the class information of the SCRIDEInstance object associated with this object handle.

Constructors

 o SCRIDEObjectHandle
 public SCRIDEObjectHandle()
Creates a SCRIDEObjectHandle object. This constructor is used for serialization only.

See Also:
SCRObjectHandle
 o SCRIDEObjectHandle
 public SCRIDEObjectHandle(String name,
                           String newclsName)
Creates a SCRIDEObjectHandle object.

Parameters:
name - The object name.
newclsName - The Java class of the object.
See Also:
SCRObjectHandle

Methods

 o init
 protected void init(SCRIDERegisteredClass reg_cls)
Initializes the SCRIDEObjectHandle object. This method creates the SCRIDEInstance object.

Parameters:
reg_cls - The SCRIDERegisteredClass object used to create the SCRIDEInstance object.
See Also:
SCRIDERegisteredClass
 o getIDEInstance
 public SCRIDEInstance getIDEInstance()
Gets a SCRIDEInstance object associated with a registered Java object.

Returns:
The SCRIDEInstance object.
See Also:
SCRIDERegisteredClass
 o createIDEInstance
 protected abstract SCRIDEInstance createIDEInstance(SCRIDEClassInfo cls_info)
Creates the associated SCRIDEInstance object. This method is called by the init() method.

Parameters:
cls_info - Class information for the SCRIDEInstance object.
Returns:
The SCRIDEInstance object.
See Also:
SCRIDERegisteredClass, SCRIDEInstance
 o putClassInfo
 public void putClassInfo(SCRIDEClassInfo cls_info)
Sets the class information of the SCRIDEInstance object associated with this object handle.

Parameters:
cls_info - Class information for the SCRIDEInstance object.
See Also:
SCRIDEInstance

All Packages  Class Hierarchy  This Package  Previous  Next  Index