Uses of Interface
com.thoughtworks.qdox.writer.ModelWriter
Packages that use ModelWriter
Package
Description
Provides the default implementation of the classes reflecting the Java model elements.
Provides classes to write Java model elements in any style
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 ModelWriterModifier and TypeMethodDescriptionAbstractJavaModel.getModelWriter()
private ModelWriter
DefaultJavaSource.getModelWriter()
-
Uses of ModelWriter in com.thoughtworks.qdox.writer
Methods in com.thoughtworks.qdox.writer that return ModelWriterModifier and TypeMethodDescriptionModelWriterFactory.newInstance()
When called, a new instance must be returned.ModelWriter.writeAnnotation
(JavaAnnotation ann) Write the java annotation A standard annotation writer should write: the annotation signatureModelWriter.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.writeConstructor
(JavaConstructor cns) Write the java constructor.ModelWriter.writeField
(JavaField fld) Write the java field A standard field writer should write: the javadoc the annotations the field signatureModelWriter.writeInitializer
(JavaInitializer init) Write the initializer.ModelWriter.writeMethod
(JavaMethod mth) Write the java method A standard method writer should write: the javadoc the annotations the method signature, containing: the parametersModelWriter.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.writeModuleExports
(JavaModuleDescriptor.JavaExports exports) Write the module descriptors exportsModelWriter.writeModuleOpens
(JavaModuleDescriptor.JavaOpens opens) Write the module descriptors opensModelWriter.writeModuleProvides
(JavaModuleDescriptor.JavaProvides provides) Write the module descriptors providesModelWriter.writeModuleRequires
(JavaModuleDescriptor.JavaRequires requires) Write the module descriptors requiresModelWriter.writeModuleUses
(JavaModuleDescriptor.JavaUses uses) Write the module descriptors usesModelWriter.writePackage
(JavaPackage pkg) Write the java package A standard package writer should write: the javadoc the annotations the package signatureModelWriter.writeParameter
(JavaParameter prm) Write the java parameter A standard parameter writer should write: the javadoc the annotations the parameter signatureModelWriter.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 ModelWriterMethods in com.thoughtworks.qdox.writer.impl that return ModelWriterModifier and TypeMethodDescriptionDefaultModelWriter.writeAnnotation
(JavaAnnotation annotation) Write the java annotation A standard annotation writer should write: the annotation signatureDefaultModelWriter.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) DefaultModelWriter.writeConstructor
(JavaConstructor constructor) Write the java constructor.DefaultModelWriter.writeField
(JavaField field) Write the java field A standard field writer should write: the javadoc the annotations the field signatureDefaultModelWriter.writeInitializer
(JavaInitializer init) Write the initializer.DefaultModelWriter.writeMethod
(JavaMethod method) Write the java method A standard method writer should write: the javadoc the annotations the method signature, containing: the parametersDefaultModelWriter.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 statementsDefaultModelWriter.writeModuleExports
(JavaModuleDescriptor.JavaExports exports) Write the module descriptors exportsDefaultModelWriter.writeModuleOpens
(JavaModuleDescriptor.JavaOpens opens) Write the module descriptors opensDefaultModelWriter.writeModuleProvides
(JavaModuleDescriptor.JavaProvides provides) Write the module descriptors providesDefaultModelWriter.writeModuleRequires
(JavaModuleDescriptor.JavaRequires requires) Write the module descriptors requiresDefaultModelWriter.writeModuleUses
(JavaModuleDescriptor.JavaUses uses) Write the module descriptors usesDefaultModelWriter.writePackage
(JavaPackage pckg) Write the java package A standard package writer should write: the javadoc the annotations the package signatureDefaultModelWriter.writeParameter
(JavaParameter parameter) Write the java parameter A standard parameter writer should write: the javadoc the annotations the parameter signatureDefaultModelWriter.writeSource
(JavaSource source) Write the complete source file A standard source writer should write: the package the imports the classes