All Packages Class Hierarchy This Package Previous Next Index
Class com.ibm.beans.script.comps.java.SCRJavaEventMethodInfo
java.lang.Object
|
+----com.ibm.beans.script.ide.SCRIDEClassInfo
|
+----com.ibm.beans.script.comps.java.SCRJavaEventMethodInfo
- public class SCRJavaEventMethodInfo
- extends SCRIDEClassInfo
This class stores special information for an event method. It stores the
method name, modifier, return type, and parameters in string
format. The infomation is used for generating the method prototype of
the script.
- See Also:
- SCRIDEClassInfo
-
argNames
- Indicates the method parameter names.
-
argTypes
- Indicates the method parameter types.
-
modifier
- Indicates the method modifier.
-
name
- Indicates the method name.
-
returnType
- Indicates the method return type.
-
SCRJavaEventMethodInfo(String)
- Constructor for SCRJavaEventMethodInfo.
-
getArgNames()
- Gets the method parameter nemaes.
-
getArgTypes()
- Gets the method parameter types.
-
getJavaTitle(String)
- Gets the method prototype for the script.
-
getModifier()
- Gets the method modifier.
-
getName()
- Gets the method name.
-
getReturnType()
- Gets the method return type.
-
putArgNames(Vector)
- Sets the method parameter names.
-
putArgTypes(Vector)
- Sets the method parameter types.
-
putModifier(int)
- Sets the method modifier.
-
putName(String)
- Sets the method name.
-
putReturnType(String)
- Sets the method return type.
modifier
protected int modifier
- Indicates the method modifier.
returnType
protected String returnType
- Indicates the method return type.
name
protected String name
- Indicates the method name.
argTypes
protected Vector argTypes
- Indicates the method parameter types.
argNames
protected Vector argNames
- Indicates the method parameter names.
SCRJavaEventMethodInfo
public SCRJavaEventMethodInfo(String title)
- Constructor for SCRJavaEventMethodInfo.
- Parameters:
- title - The method prototype which is used by the constructor of
the superclass.
getModifier
public int getModifier()
- Gets the method modifier.
- Returns:
- The method modifier.
getReturnType
public String getReturnType()
- Gets the method return type.
- Returns:
- The method return type in string format.
getName
public String getName()
- Gets the method name.
- Returns:
- The method name.
getArgNames
public Vector getArgNames()
- Gets the method parameter nemaes.
- Returns:
- The method parameters names.
getArgTypes
public Vector getArgTypes()
- Gets the method parameter types.
- Returns:
- The method parameter types.
putName
public void putName(String name_str)
- Sets the method name.
- Parameters:
- name_str - The method name.
putModifier
public void putModifier(int modifier_int)
- Sets the method modifier.
- Parameters:
- modifier_int - The method modifier.
putReturnType
public void putReturnType(String return_type)
- Sets the method return type.
- Parameters:
- return_type - The method return type.
putArgNames
public void putArgNames(Vector arg_names)
- Sets the method parameter names.
- Parameters:
- arg_names - The method parameter names.
putArgTypes
public void putArgTypes(Vector arg_types)
- Sets the method parameter types.
- Parameters:
- arg_types - The method parameter types in string format.
getJavaTitle
public String getJavaTitle(String obj_name)
- Gets the method prototype for the script.
- Parameters:
- obj_name - The Java object name.
- Returns:
- The Java method prototype.
All Packages Class Hierarchy This Package Previous Next Index