Package gw.lang.javadoc
Interface IMethodNode
-
- All Superinterfaces:
IBaseFeatureNode
public interface IMethodNode extends IBaseFeatureNode
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addException(IExceptionNode param)
void
addParam(IParamNode param)
IExceptionNode
getException(IJavaClassInfo exceptionClass)
List<IExceptionNode>
getExceptions()
String
getName()
List<IParamNode>
getParams()
String
getReturnDescription()
void
setName(String name)
void
setReturnDescription(String value)
-
Methods inherited from interface gw.lang.javadoc.IBaseFeatureNode
getDeprecated, getDescription, isDeprecated, setDeprecated, setDescription
-
-
-
-
Method Detail
-
getReturnDescription
String getReturnDescription()
-
setReturnDescription
void setReturnDescription(String value)
-
getParams
List<IParamNode> getParams()
-
addParam
void addParam(IParamNode param)
-
getExceptions
List<IExceptionNode> getExceptions()
-
addException
void addException(IExceptionNode param)
-
getException
IExceptionNode getException(IJavaClassInfo exceptionClass)
-
getName
String getName()
-
setName
void setName(String name)
-
-