Package gw.lang.javadoc
Interface IClassDocNode
-
public interface IClassDocNode
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddConstructor(IConstructorNode ctor)voidaddMethod(IMethodNode method)voidaddVar(IVarNode var)IConstructorNodegetConstructor(IJavaClassConstructor ctor)List<IConstructorNode>getConstructors()StringgetDeprecated()StringgetDescription()IMethodNodegetMethod(IJavaMethodDescriptor name)IMethodNodegetMethod(String name, Type[] parameterTypes)List<IMethodNode>getMethods()IVarNodegetVar(String name)List<IVarNode>getVars()booleanisDeprecated()voidsetDeprecated(String value)voidsetDescription(String value)
-
-
-
Method Detail
-
getDescription
String getDescription()
-
setDescription
void setDescription(String value)
-
getDeprecated
String getDeprecated()
-
isDeprecated
boolean isDeprecated()
-
setDeprecated
void setDeprecated(String value)
-
getMethods
List<IMethodNode> getMethods()
-
addMethod
void addMethod(IMethodNode method)
-
getMethod
IMethodNode getMethod(IJavaMethodDescriptor name)
-
getMethod
IMethodNode getMethod(String name, Type[] parameterTypes)
-
getConstructors
List<IConstructorNode> getConstructors()
-
addConstructor
void addConstructor(IConstructorNode ctor)
-
addVar
void addVar(IVarNode var)
-
getConstructor
IConstructorNode getConstructor(IJavaClassConstructor ctor)
-
-