Package gw.internal.gosu.javadoc
Class ConstructorNode
- java.lang.Object
-
- gw.internal.gosu.javadoc.BaseFeatureNode
-
- gw.internal.gosu.javadoc.ConstructorNode
-
- All Implemented Interfaces:
IDocNodeWithDescription,IDocNodeWithParams,IBaseFeatureNode,IConstructorNode
class ConstructorNode extends BaseFeatureNode implements IConstructorNode, IDocNodeWithParams
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<IExceptionNode>_exceptionsprivate java.util.List<IParamNode>_params
-
Constructor Summary
Constructors Constructor Description ConstructorNode()
-
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.util.List<IParamNode>getParams()-
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
-
_params
private java.util.List<IParamNode> _params
-
_exceptions
private java.util.List<IExceptionNode> _exceptions
-
-
Method Detail
-
getParams
public java.util.List<IParamNode> getParams()
- Specified by:
getParamsin interfaceIConstructorNode
-
addParam
public void addParam(IParamNode param)
- Specified by:
addParamin interfaceIConstructorNode- Specified by:
addParamin interfaceIDocNodeWithParams
-
getExceptions
public java.util.List<IExceptionNode> getExceptions()
- Specified by:
getExceptionsin interfaceIConstructorNode
-
addException
public void addException(IExceptionNode exception)
- Specified by:
addExceptionin interfaceIConstructorNode- Specified by:
addExceptionin interfaceIDocNodeWithParams
-
getException
public ExceptionNode getException(IJavaClassInfo exceptionClass)
- Specified by:
getExceptionin interfaceIConstructorNode
-
-