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 ModelWriterAbstractJavaModel. getModelWriter() -
Uses of ModelWriter in com.thoughtworks.qdox.writer
Methods in com.thoughtworks.qdox.writer that return ModelWriter Modifier and Type Method Description ModelWriterModelWriterFactory. newInstance()When called, a new instance must be returned.ModelWriterModelWriter. writeAnnotation(JavaAnnotation ann)Write the java annotation A standard annotation writer should write: the annotation signatureModelWriterModelWriter. 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 methodsModelWriterModelWriter. writeConstructor(JavaConstructor cns)Write the java constructor.ModelWriterModelWriter. writeField(JavaField fld)Write the java field A standard field writer should write: the javadoc the annotations the field signatureModelWriterModelWriter. writeInitializer(JavaInitializer init)Write the initializer.ModelWriterModelWriter. writeMethod(JavaMethod mth)Write the java method A standard method writer should write: the javadoc the annotations the method signature, containing: the parametersModelWriterModelWriter. 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 statementsModelWriterModelWriter. writeModuleExports(JavaModuleDescriptor.JavaExports exports)Write the module descriptors exportsModelWriterModelWriter. writeModuleOpens(JavaModuleDescriptor.JavaOpens opens)Write the module descriptors opensModelWriterModelWriter. writeModuleProvides(JavaModuleDescriptor.JavaProvides provides)Write the module descriptors providesModelWriterModelWriter. writeModuleRequires(JavaModuleDescriptor.JavaRequires requires)Write the module descriptors requiresModelWriterModelWriter. writeModuleUses(JavaModuleDescriptor.JavaUses uses)Write the module descriptors usesModelWriterModelWriter. writePackage(JavaPackage pkg)Write the java package A standard package writer should write: the javadoc the annotations the package signatureModelWriterModelWriter. writeParameter(JavaParameter prm)Write the java parameter A standard parameter writer should write: the javadoc the annotations the parameter signatureModelWriterModelWriter. 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 classDefaultModelWriterMethods in com.thoughtworks.qdox.writer.impl that return ModelWriter Modifier and Type Method Description ModelWriterDefaultModelWriter. writeAnnotation(JavaAnnotation annotation)Write the java annotation A standard annotation writer should write: the annotation signatureModelWriterDefaultModelWriter. 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 methodsModelWriterDefaultModelWriter. writeConstructor(JavaConstructor constructor)Write the java constructor.ModelWriterDefaultModelWriter. writeField(JavaField field)Write the java field A standard field writer should write: the javadoc the annotations the field signatureModelWriterDefaultModelWriter. writeInitializer(JavaInitializer init)Write the initializer.ModelWriterDefaultModelWriter. writeMethod(JavaMethod method)Write the java method A standard method writer should write: the javadoc the annotations the method signature, containing: the parametersModelWriterDefaultModelWriter. 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 statementsModelWriterDefaultModelWriter. writeModuleExports(JavaModuleDescriptor.JavaExports exports)Write the module descriptors exportsModelWriterDefaultModelWriter. writeModuleOpens(JavaModuleDescriptor.JavaOpens opens)Write the module descriptors opensModelWriterDefaultModelWriter. writeModuleProvides(JavaModuleDescriptor.JavaProvides provides)Write the module descriptors providesModelWriterDefaultModelWriter. writeModuleRequires(JavaModuleDescriptor.JavaRequires requires)Write the module descriptors requiresModelWriterDefaultModelWriter. writeModuleUses(JavaModuleDescriptor.JavaUses uses)Write the module descriptors usesModelWriterDefaultModelWriter. writePackage(JavaPackage pckg)Write the java package A standard package writer should write: the javadoc the annotations the package signatureModelWriterDefaultModelWriter. writeParameter(JavaParameter parameter)Write the java parameter A standard parameter writer should write: the javadoc the annotations the parameter signatureModelWriterDefaultModelWriter. writeSource(JavaSource source)Write the complete source file A standard source writer should write: the package the imports the classes
-