com.thoughtworks.qdox.parser.Builder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.qdox
Show all versions of org.apache.servicemix.bundles.qdox
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
The newest version!
package com.thoughtworks.qdox.parser;
import com.thoughtworks.qdox.parser.structs.ClassDef;
import com.thoughtworks.qdox.parser.structs.FieldDef;
import com.thoughtworks.qdox.parser.structs.MethodDef;
import com.thoughtworks.qdox.parser.structs.TagDef;
public interface Builder {
void addPackage(String packageName);
void addImport(String importName);
void addJavaDoc(String text);
void addJavaDocTag(TagDef def);
void beginClass(ClassDef def);
void endClass();
void addMethod(MethodDef def);
void addField(FieldDef def);
}