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.
-
SCRComponentDescriptor(String, String, String, Hashtable)
- Creates an instance of a scripting component descriptor.
-
getClassName()
- Requests the scripting component class name.
-
getLanguage()
- Queries the scripting language.
-
getProperties()
- Requests the scripting component properties.
-
getVersion()
- Queries the scripting component version.
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
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.
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.
getProperties
public Hashtable getProperties()
- Requests the scripting component properties.
- Returns:
- The scripting component properties.
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