Package gw.lang.javadoc
Interface IClassDocNode
-
public interface IClassDocNode
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addConstructor(IConstructorNode ctor)
void
addMethod(IMethodNode method)
void
addVar(IVarNode var)
IConstructorNode
getConstructor(IJavaClassConstructor ctor)
List<IConstructorNode>
getConstructors()
String
getDeprecated()
String
getDescription()
IMethodNode
getMethod(IJavaMethodDescriptor name)
IMethodNode
getMethod(String name, Type[] parameterTypes)
List<IMethodNode>
getMethods()
IVarNode
getVar(String name)
List<IVarNode>
getVars()
boolean
isDeprecated()
void
setDeprecated(String value)
void
setDescription(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)
-
-