public class MethodDocType extends Object
Modifier and Type | Field and Description |
---|---|
protected String |
commentText |
protected String |
methodSignature |
protected List<ParamDocType> |
paramDoc |
Constructor and Description |
---|
MethodDocType() |
Modifier and Type | Method and Description |
---|---|
List<Object> |
getAny() |
String |
getCommentText()
Gets the value of the commentText property.
|
String |
getMethodName()
Get the method name.
|
String |
getMethodSignature()
Get the method signature, or
null if no method signature has been set for the method. |
List<ParamDocType> |
getParamDocs() |
RequestDocType |
getRequestDoc() |
ResponseDocType |
getResponseDoc() |
String |
getReturnDoc() |
String |
getReturnTypeExample() |
void |
setCommentText(String value)
Sets the value of the commentText property.
|
void |
setMethodName(String methodName)
Set the method name.
|
void |
setMethodSignature(String methodSignature)
Set the unique method signature, including method parameters, if any.
|
void |
setRequestDoc(RequestDocType requestDoc) |
void |
setResponseDoc(ResponseDocType responseDoc) |
void |
setReturnDoc(String returnDoc) |
void |
setReturnTypeExample(String returnTypeExample) |
protected String methodSignature
protected String commentText
protected List<ParamDocType> paramDoc
public List<ParamDocType> getParamDocs()
public String getMethodName()
public void setMethodName(String methodName)
methodName
- the method name to set.public String getMethodSignature()
null
if no method signature has been set for the method.
This string uniquely identifies the method in case there are multiple methods in the class with the same name.
public void setMethodSignature(String methodSignature)
methodSignature
- method signature string to set.public String getCommentText()
public void setCommentText(String value)
value
- the commentTextpublic String getReturnDoc()
public void setReturnDoc(String returnDoc)
returnDoc
- the returnDoc to setpublic String getReturnTypeExample()
public void setReturnTypeExample(String returnTypeExample)
returnTypeExample
- the returnTypeExample to setpublic RequestDocType getRequestDoc()
public void setRequestDoc(RequestDocType requestDoc)
requestDoc
- the requestDoc to setpublic ResponseDocType getResponseDoc()
public void setResponseDoc(ResponseDocType responseDoc)
responseDoc
- the responseDoc to setCopyright © 2007-2024, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.