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
-
SCRObjectHandle()
- Reserved.
-
SCRObjectHandle(String, String)
- Creates a SCRObjectHandle.
-
getClassName()
- Gets the object class associated with the handle.
-
getName()
- Gets the name of the object associated with the handle.
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
SCRObjectHandle
public SCRObjectHandle()
- Reserved.
getClassName
public String getClassName()
- Gets the object class associated with the handle.
- Returns:
- The Object class associated with the handle.
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