Uses of Interface
com.thoughtworks.qdox.writer.ModelWriter
-
Packages that use ModelWriter Package Description com.thoughtworks.qdox.model.impl Provides the default implementation of the classes reflecting the Java model elements.com.thoughtworks.qdox.writer Provides classes to write Java model elements in any stylecom.thoughtworks.qdox.writer.impl Provides the default implementation of classes to write Java model elements in any style. -
-
Uses of ModelWriter in com.thoughtworks.qdox.model.impl
Methods in com.thoughtworks.qdox.model.impl that return ModelWriter Modifier and Type Method Description ModelWriter
AbstractJavaModel. getModelWriter()
private ModelWriter
DefaultJavaSource. getModelWriter()
-
Uses of ModelWriter in com.thoughtworks.qdox.writer
Methods in com.thoughtworks.qdox.writer that return ModelWriter Modifier and Type Method Description ModelWriter
ModelWriterFactory. newInstance()
When called, a new instance must be returned.ModelWriter
ModelWriter. writeAnnotation(JavaAnnotation ann)
Write the java annotation A standard annotation writer should write: the annotation signatureModelWriter
ModelWriter. writeClass(JavaClass cls)
Write the java class A standard class writer should write: the javadoc the annotations the class signature, containing: the fields the constructors the methodsModelWriter
ModelWriter. writeConstructor(JavaConstructor cns)
Write the java constructor.ModelWriter
ModelWriter. writeField(JavaField fld)
Write the java field A standard field writer should write: the javadoc the annotations the field signatureModelWriter
ModelWriter. writeInitializer(JavaInitializer init)
Write the initializer.ModelWriter
ModelWriter. writeMethod(JavaMethod mth)
Write the java method A standard method writer should write: the javadoc the annotations the method signature, containing: the parametersModelWriter
ModelWriter. writeModuleDescriptor(JavaModuleDescriptor descriptor)
Write the module descriptor A standard module descriptor writer should write: the javadoc the annotations the module signature, containing: the requires statements the exports statements the opens statements the uses statements the provides statementsModelWriter
ModelWriter. writeModuleExports(JavaModuleDescriptor.JavaExports exports)
Write the module descriptors exportsModelWriter
ModelWriter. writeModuleOpens(JavaModuleDescriptor.JavaOpens opens)
Write the module descriptors opensModelWriter
ModelWriter. writeModuleProvides(JavaModuleDescriptor.JavaProvides provides)
Write the module descriptors providesModelWriter
ModelWriter. writeModuleRequires(JavaModuleDescriptor.JavaRequires requires)
Write the module descriptors requiresModelWriter
ModelWriter. writeModuleUses(JavaModuleDescriptor.JavaUses uses)
Write the module descriptors usesModelWriter
ModelWriter. writePackage(JavaPackage pkg)
Write the java package A standard package writer should write: the javadoc the annotations the package signatureModelWriter
ModelWriter. writeParameter(JavaParameter prm)
Write the java parameter A standard parameter writer should write: the javadoc the annotations the parameter signatureModelWriter
ModelWriter. writeSource(JavaSource src)
Write the complete source file A standard source writer should write: the package the imports the classes -
Uses of ModelWriter in com.thoughtworks.qdox.writer.impl
Classes in com.thoughtworks.qdox.writer.impl that implement ModelWriter Modifier and Type Class Description class
DefaultModelWriter
Methods in com.thoughtworks.qdox.writer.impl that return ModelWriter Modifier and Type Method Description ModelWriter
DefaultModelWriter. writeAnnotation(JavaAnnotation annotation)
Write the java annotation A standard annotation writer should write: the annotation signatureModelWriter
DefaultModelWriter. writeClass(JavaClass cls)
Write the java class A standard class writer should write: the javadoc the annotations the class signature, containing: the fields the constructors the methodsprivate ModelWriter
DefaultModelWriter. writeClassBody(JavaClass cls)
ModelWriter
DefaultModelWriter. writeConstructor(JavaConstructor constructor)
Write the java constructor.ModelWriter
DefaultModelWriter. writeField(JavaField field)
Write the java field A standard field writer should write: the javadoc the annotations the field signatureModelWriter
DefaultModelWriter. writeInitializer(JavaInitializer init)
Write the initializer.ModelWriter
DefaultModelWriter. writeMethod(JavaMethod method)
Write the java method A standard method writer should write: the javadoc the annotations the method signature, containing: the parametersModelWriter
DefaultModelWriter. writeModuleDescriptor(JavaModuleDescriptor descriptor)
Write the module descriptor A standard module descriptor writer should write: the javadoc the annotations the module signature, containing: the requires statements the exports statements the opens statements the uses statements the provides statementsModelWriter
DefaultModelWriter. writeModuleExports(JavaModuleDescriptor.JavaExports exports)
Write the module descriptors exportsModelWriter
DefaultModelWriter. writeModuleOpens(JavaModuleDescriptor.JavaOpens opens)
Write the module descriptors opensModelWriter
DefaultModelWriter. writeModuleProvides(JavaModuleDescriptor.JavaProvides provides)
Write the module descriptors providesModelWriter
DefaultModelWriter. writeModuleRequires(JavaModuleDescriptor.JavaRequires requires)
Write the module descriptors requiresModelWriter
DefaultModelWriter. writeModuleUses(JavaModuleDescriptor.JavaUses uses)
Write the module descriptors usesModelWriter
DefaultModelWriter. writePackage(JavaPackage pckg)
Write the java package A standard package writer should write: the javadoc the annotations the package signatureModelWriter
DefaultModelWriter. writeParameter(JavaParameter parameter)
Write the java parameter A standard parameter writer should write: the javadoc the annotations the parameter signatureModelWriter
DefaultModelWriter. writeSource(JavaSource source)
Write the complete source file A standard source writer should write: the package the imports the classes
-