Package com.thoughtworks.qdox.parser
Interface Builder
-
- All Known Implementing Classes:
ModelBuilder
public interface Builder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidaddAnnotation(Annotation annotation)voidaddField(FieldDef def)voidaddImport(java.lang.String importName)voidaddJavaDoc(java.lang.String text)voidaddJavaDocTag(TagDef def)voidaddPackage(PackageDef packageDef)voidaddParameter(FieldDef def)voidbeginClass(ClassDef def)voidbeginMethod()TypecreateType(TypeDef name)TypecreateType(java.lang.String name, int dimensions)Deprecated.voidendClass()voidendMethod(MethodDef def)
-
-
-
Method Detail
-
addPackage
void addPackage(PackageDef packageDef)
-
addImport
void addImport(java.lang.String importName)
-
addJavaDoc
void addJavaDoc(java.lang.String text)
-
addJavaDocTag
void addJavaDocTag(TagDef def)
-
beginClass
void beginClass(ClassDef def)
-
endClass
void endClass()
-
beginMethod
void beginMethod()
-
endMethod
void endMethod(MethodDef def)
-
addParameter
void addParameter(FieldDef def)
-
addField
void addField(FieldDef def)
-
addAnnotation
void addAnnotation(Annotation annotation)
-
createType
Type createType(java.lang.String name, int dimensions)
Deprecated.
-
-