Uses of Interface
com.thoughtworks.qdox.model.JavaAnnotation
-
Packages that use JavaAnnotation Package Description com.thoughtworks.qdox.builder.impl Provides the default implementation of the classes which transform the structs from the JavaParser to the Java model elementscom.thoughtworks.qdox.model Provides classes reflecting the Java model elements.com.thoughtworks.qdox.model.expression Provides classes reflecting the Java expressions.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 JavaAnnotation in com.thoughtworks.qdox.builder.impl
Methods in com.thoughtworks.qdox.builder.impl with parameters of type JavaAnnotation Modifier and Type Method Description java.util.List<?>
EvaluatingVisitor. getListValue(JavaAnnotation annotation, java.lang.String property)
java.lang.Object
EvaluatingVisitor. getValue(JavaAnnotation annotation, java.lang.String property)
java.lang.Object
EvaluatingVisitor. visit(JavaAnnotation annotation)
-
Uses of JavaAnnotation in com.thoughtworks.qdox.model
Methods in com.thoughtworks.qdox.model that return types with arguments of type JavaAnnotation Modifier and Type Method Description java.util.List<JavaAnnotation>
JavaAnnotatedElement. getAnnotations()
Equivalent ofAnnotatedElement.getAnnotations()
-
Uses of JavaAnnotation in com.thoughtworks.qdox.model.expression
Methods in com.thoughtworks.qdox.model.expression with parameters of type JavaAnnotation Modifier and Type Method Description java.lang.Object
ExpressionVisitor. visit(JavaAnnotation annotation)
-
Uses of JavaAnnotation in com.thoughtworks.qdox.model.impl
Classes in com.thoughtworks.qdox.model.impl that implement JavaAnnotation Modifier and Type Class Description class
DefaultJavaAnnotation
Fields in com.thoughtworks.qdox.model.impl with type parameters of type JavaAnnotation Modifier and Type Field Description private java.util.List<JavaAnnotation>
AbstractBaseJavaEntity. annotations
Methods in com.thoughtworks.qdox.model.impl that return types with arguments of type JavaAnnotation Modifier and Type Method Description java.util.List<JavaAnnotation>
AbstractBaseJavaEntity. getAnnotations()
java.util.List<JavaAnnotation>
DefaultJavaType. getAnnotations()
Equivalent ofAnnotatedElement.getAnnotations()
java.util.List<JavaAnnotation>
JavaMethodDelegate. getAnnotations()
Equivalent ofAnnotatedElement.getAnnotations()
Method parameters in com.thoughtworks.qdox.model.impl with type arguments of type JavaAnnotation Modifier and Type Method Description void
AbstractBaseJavaEntity. setAnnotations(java.util.List<JavaAnnotation> annotations)
-
Uses of JavaAnnotation in com.thoughtworks.qdox.writer
Methods in com.thoughtworks.qdox.writer with parameters of type JavaAnnotation Modifier and Type Method Description ModelWriter
ModelWriter. writeAnnotation(JavaAnnotation ann)
Write the java annotation A standard annotation writer should write: the annotation signature -
Uses of JavaAnnotation in com.thoughtworks.qdox.writer.impl
Methods in com.thoughtworks.qdox.writer.impl with parameters of type JavaAnnotation Modifier and Type Method Description ModelWriter
DefaultModelWriter. writeAnnotation(JavaAnnotation annotation)
Write the java annotation A standard annotation writer should write: the annotation signature
-