All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.beans.script.SCRObjectHandle

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

public class SCRObjectHandle
extends Object
implements Serializable
The SCRObjectHandle class contains the object class and its associated name. The scripting component for each object data should be stored in a derived class of SCRObjectHandle. The instances of the SCRObjectHandle class can be serialized.

See Also:
createObjectHandle

Constructor Index

 o SCRObjectHandle()
Reserved.
 o SCRObjectHandle(String, String)
Creates a SCRObjectHandle.

Method Index

 o getClassName()
Gets the object class associated with the handle.
 o getName()
Gets the name of the object associated with the handle.

Constructors

 o SCRObjectHandle
 public SCRObjectHandle(String newName,
                        String newclsName)
Creates a SCRObjectHandle. The SCRObjectHandle should be created from the createObjectHandle() method of the SCRComponent class.

Parameters:
newName - The name of the object.
newclsName - The object class.
See Also:
createObjectHandle
 o SCRObjectHandle
 public SCRObjectHandle()
Reserved.

Methods

 o getClassName
 public String getClassName()
Gets the object class associated with the handle.

Returns:
The Object class associated with the handle.
 o getName
 public String getName()
Gets the name of the object associated with the handle.

Returns:
The name of the object associated with the handle.

All Packages  Class Hierarchy  This Package  Previous  Next  Index