Package gw.internal.gosu.javadoc
Class MethodNode
- java.lang.Object
-
- gw.internal.gosu.javadoc.BaseFeatureNode
-
- gw.internal.gosu.javadoc.MethodNode
-
- All Implemented Interfaces:
IDocNodeWithDescription,IDocNodeWithParams,IBaseFeatureNode,IMethodNode
class MethodNode extends BaseFeatureNode implements IMethodNode, IDocNodeWithParams
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<IExceptionNode>_exceptionsprivate java.lang.String_nameprivate java.util.List<IParamNode>_paramsprivate java.lang.String_returnDescription
-
Constructor Summary
Constructors Constructor Description MethodNode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddException(IExceptionNode exception)voidaddParam(IParamNode param)ExceptionNodegetException(IJavaClassInfo exceptionClass)java.util.List<IExceptionNode>getExceptions()java.lang.StringgetName()java.util.List<IParamNode>getParams()java.lang.StringgetReturnDescription()voidsetName(java.lang.String name)voidsetReturnDescription(java.lang.String value)-
Methods inherited from class gw.internal.gosu.javadoc.BaseFeatureNode
getDeprecated, getDescription, isDeprecated, setDeprecated, setDescription
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface gw.lang.javadoc.IBaseFeatureNode
getDeprecated, getDescription, isDeprecated, setDeprecated, setDescription
-
-
-
-
Field Detail
-
_name
private java.lang.String _name
-
_params
private java.util.List<IParamNode> _params
-
_exceptions
private java.util.List<IExceptionNode> _exceptions
-
_returnDescription
private java.lang.String _returnDescription
-
-
Method Detail
-
getReturnDescription
public java.lang.String getReturnDescription()
- Specified by:
getReturnDescriptionin interfaceIMethodNode
-
setReturnDescription
public void setReturnDescription(java.lang.String value)
- Specified by:
setReturnDescriptionin interfaceIMethodNode
-
getParams
public java.util.List<IParamNode> getParams()
- Specified by:
getParamsin interfaceIMethodNode
-
addParam
public void addParam(IParamNode param)
- Specified by:
addParamin interfaceIDocNodeWithParams- Specified by:
addParamin interfaceIMethodNode
-
getExceptions
public java.util.List<IExceptionNode> getExceptions()
- Specified by:
getExceptionsin interfaceIMethodNode
-
addException
public void addException(IExceptionNode exception)
- Specified by:
addExceptionin interfaceIDocNodeWithParams- Specified by:
addExceptionin interfaceIMethodNode
-
getException
public ExceptionNode getException(IJavaClassInfo exceptionClass)
- Specified by:
getExceptionin interfaceIMethodNode
-
getName
public java.lang.String getName()
- Specified by:
getNamein interfaceIMethodNode
-
setName
public void setName(java.lang.String name)
- Specified by:
setNamein interfaceIMethodNode
-
-