Uses of Class
com.github.tadukoo.parsing.code.java.JavaAnnotation
-
Uses of JavaAnnotation in com.github.tadukoo.parsing.code.java
Modifier and TypeFieldDescriptionprivate final List<JavaAnnotation>
JavaClass.annotations
Theannotations
on the classprivate List<JavaAnnotation>
JavaClass.JavaClassBuilder.annotations
Theannotations
on the classprivate final List<JavaAnnotation>
JavaField.annotations
Theannotations
on the fieldprivate List<JavaAnnotation>
JavaField.JavaFieldBuilder.annotations
Theannotations
on the fieldprivate final List<JavaAnnotation>
JavaMethod.annotations
Theannotations
on the methodprivate List<JavaAnnotation>
JavaMethod.JavaMethodBuilder.annotations
Theannotations
on the methodModifier and TypeMethodDescriptionJavaAnnotation.JavaAnnotationBuilder.build()
Checks for any errors in the current parameters, then builds a newJavaAnnotation
Modifier and TypeMethodDescriptionJavaClass.getAnnotations()
JavaField.getAnnotations()
JavaMethod.getAnnotations()
Modifier and TypeMethodDescriptionJavaClass.JavaClassBuilder.annotation
(JavaAnnotation annotation) JavaField.JavaFieldBuilder.annotation
(JavaAnnotation annotation) JavaMethod.JavaMethodBuilder.annotation
(JavaAnnotation annotation) Modifier and TypeMethodDescriptionJavaClass.JavaClassBuilder.annotations
(List<JavaAnnotation> annotations) JavaField.JavaFieldBuilder.annotations
(List<JavaAnnotation> annotations) JavaMethod.JavaMethodBuilder.annotations
(List<JavaAnnotation> annotations) ModifierConstructorDescriptionprivate
JavaField
(List<JavaAnnotation> annotations, Visibility visibility, boolean isFinal, String type, String name, String value) Constructs a Java Field with the given parametersprivate
JavaMethod
(List<JavaAnnotation> annotations, Visibility visibility, String returnType, String name, List<com.github.tadukoo.util.tuple.Pair<String, String>> parameters, List<String> throwTypes, List<String> lines) Constructs a new Java Method with the given parameters