| java.lang.Object com.rift.coad.web.admin.client.MethodDef
MethodDef | public class MethodDef implements IsSerializable(Code) | | This object represents a method description
author: brett chaldecott |
MethodDef | public MethodDef()(Code) | | Creates a new instance of MethodDef
|
MethodDef | public MethodDef(String name, String description, VariableDef result, VariableDef[] parameters)(Code) | | Creates a new instance of MethodDef
Parameters: name - The name of the method. Parameters: description - The description of the method. Parameters: result - The result definition. Parameters: parameters - The parameters. |
getDescription | public String getDescription()(Code) | | This method returns the description of this method.
The string containing the description of this method. |
getName | public String getName()(Code) | | This method returns the name of the method.
|
getParameters | public VariableDef[] getParameters()(Code) | | This method returns the parameter definition information.
The list of parameters. |
getResult | public VariableDef getResult()(Code) | | This method returns the result of the variable definition.
The definition of the result. |
setDescription | public void setDescription(String description)(Code) | | This method sets the description of the method.
Parameters: description - The description of this method. |
setName | public void setName(String name)(Code) | | This method sets the name of the method.
Parameters: name - The name of the method. |
setParameters | public void setParameters(VariableDef[] parameters)(Code) | | This method sets the parameters of the method.
Parameters: parameters - The list of parameters. |
setResult | public void setResult(VariableDef result)(Code) | | This method sets the result of method.
Parameters: result - The result of the method. |
|
|