All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.beans.script.SCRComponentDescriptor

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

public class SCRComponentDescriptor
extends Object
implements Serializable
A class that is used to identify a registered scripting component.


Constructor Index

 o SCRComponentDescriptor(String, String, String, Hashtable)
Creates an instance of a scripting component descriptor.

Method Index

 o getClassName()
Requests the scripting component class name.
 o getLanguage()
Queries the scripting language.
 o getProperties()
Requests the scripting component properties.
 o getVersion()
Queries the scripting component version.

Constructors

 o SCRComponentDescriptor
 public SCRComponentDescriptor(String newLanguage,
                               String newVersion,
                               String newClassName,
                               Hashtable props)
Creates an instance of a scripting component descriptor.

Parameters:
newLanguage - The name of the scripting language.
newVersion - The version of the scripting language.
newClassName - The scripting component class name.
props - The scripting component properties.
See Also:
SCREnvironment

Methods

 o getLanguage
 public String getLanguage()
Queries the scripting language. This method returns a string representing the scripting language for the scripting component associated with this SCRComponentDescriptor object.

Returns:
The name of the scripting language.
 o getVersion
 public String getVersion()
Queries the scripting component version. This method returns a string representing the version of the scripting component associated with this SCRComponentDescriptor object.

Returns:
The version of the scripting component.
 o getProperties
 public Hashtable getProperties()
Requests the scripting component properties.

Returns:
The scripting component properties.
 o getClassName
 public String getClassName()
Requests the scripting component class name.

Returns:
The scripting component class name.

All Packages  Class Hierarchy  This Package  Previous  Next  Index