| java.lang.Object com.sun.rave.designtime.ContextMethod
All known Subclasses: org.netbeans.modules.visualweb.insync.java.MethodInfo,
Constructor Summary | |
public | ContextMethod() Constructs a default ContextMethod with nothing specified. | public | ContextMethod(DesignContext designContext) Constructs a default ContextMethod with only the DesignContext specified. | public | ContextMethod(DesignContext designContext, String name) Constructs a ContextMethod with the specified DesignContext and name. | public | ContextMethod(DesignContext designContext, String name, int modifiers, Class returnType, Class[] parameterTypes, String[] parameterNames) Constructs a ContextMethod with the specified DesignContext, name, modifiers,
returnType, parameterTypes, and parameterNames. | public | ContextMethod(DesignContext designContext, String name, int modifiers, Class returnType, Class[] parameterTypes, String[] parameterNames, String methodBodyText, String commentText) Constructs a ContextMethod with the specified DesignContext, name, modifiers,
returnType, parameterTypes, parameterNames, methodBody, and commentText. |
ContextMethod | public ContextMethod()(Code) | | Constructs a default ContextMethod with nothing specified.
|
ContextMethod | public ContextMethod(DesignContext designContext)(Code) | | Constructs a default ContextMethod with only the DesignContext specified.
Parameters: designContext - DesignContext for this ContextMethod |
ContextMethod | public ContextMethod(DesignContext designContext, String name)(Code) | | Constructs a ContextMethod with the specified DesignContext and name.
Parameters: designContext - DesignContext for this ContextMethod Parameters: name - The method name for this ContextMethod |
ContextMethod | public ContextMethod(DesignContext designContext, String name, int modifiers, Class returnType, Class[] parameterTypes, String[] parameterNames)(Code) | | Constructs a ContextMethod with the specified DesignContext, name, modifiers,
returnType, parameterTypes, and parameterNames.
Parameters: designContext - DesignContext for this ContextMethod Parameters: name - The method name for this ContextMethod Parameters: modifiers - The method Modifier bits Parameters: returnType - The return type for this ContextMethod Parameters: parameterTypes - The parameter types for this ContextMethod Parameters: parameterNames - The parameter names for this ContextMethod |
ContextMethod | public ContextMethod(DesignContext designContext, String name, int modifiers, Class returnType, Class[] parameterTypes, String[] parameterNames, String methodBodyText, String commentText)(Code) | | Constructs a ContextMethod with the specified DesignContext, name, modifiers,
returnType, parameterTypes, parameterNames, methodBody, and commentText.
Parameters: designContext - DesignContext for this ContextMethod Parameters: name - The method name for this ContextMethod Parameters: modifiers - The method Modifier bits Parameters: parameterTypes - The parameter types for this ContextMethod Parameters: parameterNames - The parameter names for this ContextMethod Parameters: returnType - The return type for this ContextMethod Parameters: methodBody - The Java source code for the body of this ContextMethod Parameters: commentText - The comment text for this ContextMethod |
getDesignContext | public DesignContext getDesignContext()(Code) | | Returns the DesignContext associated with this DesignContext
The DesignContext associated with this DesignContext |
getExceptionTypes | public Class[] getExceptionTypes()(Code) | | Class[] |
getMethodBodyText | public String getMethodBodyText()(Code) | | String |
getModifiers | public int getModifiers()(Code) | | int |
getParameterNames | public String[] getParameterNames()(Code) | | String[] |
getParameterTypes | public Class[] getParameterTypes()(Code) | | Class[] |
setCommentText | public void setCommentText(String commentText)(Code) | | Parameters: commentText - String |
setDesignContext | public void setDesignContext(DesignContext designContext)(Code) | | Parameters: designContext - DesignContext |
setExceptionTypes | public void setExceptionTypes(Class[] exceptionTypes)(Code) | | Parameters: exceptionTypes - Class[] |
setMethodBodyText | public void setMethodBodyText(String methodBodyText)(Code) | | Parameters: methodBody - String |
setModifiers | public void setModifiers(int modifiers)(Code) | | Parameters: modifiers - int |
setName | public void setName(String name)(Code) | | Parameters: name - String |
setParameterNames | public void setParameterNames(String[] parameterNames)(Code) | | Parameters: parameterNames - String[] |
setParameterTypes | public void setParameterTypes(Class[] parameterTypes)(Code) | | Parameters: parameterTypes - Class[] |
setReturnType | public void setReturnType(Class returnType)(Code) | | Parameters: returnType - Class |
|
|