Package gw.lang.javadoc
Interface IClassDocNode
-
- All Known Implementing Classes:
ClassDocNode
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)java.util.List<IConstructorNode>getConstructors()java.lang.StringgetDeprecated()java.lang.StringgetDescription()IMethodNodegetMethod(IJavaMethodDescriptor name)IMethodNodegetMethod(java.lang.String name, java.lang.reflect.Type[] parameterTypes)java.util.List<IMethodNode>getMethods()IVarNodegetVar(java.lang.String name)java.util.List<IVarNode>getVars()booleanisDeprecated()voidsetDeprecated(java.lang.String value)voidsetDescription(java.lang.String value)
-
-
-
Method Detail
-
getDescription
java.lang.String getDescription()
-
setDescription
void setDescription(java.lang.String value)
-
getDeprecated
java.lang.String getDeprecated()
-
isDeprecated
boolean isDeprecated()
-
setDeprecated
void setDeprecated(java.lang.String value)
-
getMethods
java.util.List<IMethodNode> getMethods()
-
addMethod
void addMethod(IMethodNode method)
-
getMethod
IMethodNode getMethod(IJavaMethodDescriptor name)
-
getMethod
IMethodNode getMethod(java.lang.String name, java.lang.reflect.Type[] parameterTypes)
-
getConstructors
java.util.List<IConstructorNode> getConstructors()
-
addConstructor
void addConstructor(IConstructorNode ctor)
-
getVars
java.util.List<IVarNode> getVars()
-
addVar
void addVar(IVarNode var)
-
getVar
IVarNode getVar(java.lang.String name)
-
getConstructor
IConstructorNode getConstructor(IJavaClassConstructor ctor)
-
-