Uses of Class
com.github.tadukoo.java.JavaAnnotation
Packages that use JavaAnnotation
Package
Description
Contains the base classes for dealing with Java code
Contains editable versions of Java types for working with Java code
Contains uneditable versions of Java types to use for handling Java code
-
Uses of JavaAnnotation in com.github.tadukoo.java
Classes in com.github.tadukoo.java with type parameters of type JavaAnnotationModifier and TypeClassDescriptionclassJavaAnnotationBuilder<AnnotationType extends JavaAnnotation>Java Annotation Builder is used to build a newJavaAnnotation.Fields in com.github.tadukoo.java with type parameters of type JavaAnnotationModifier and TypeFieldDescriptionprotected List<JavaAnnotation>JavaClass.annotationsTheannotationson the classprotected List<JavaAnnotation>JavaClassBuilder.annotationsTheannotationson the classprotected List<JavaAnnotation>JavaField.annotationsTheannotationson the fieldprotected List<JavaAnnotation>JavaFieldBuilder.annotationsTheannotationson the fieldprotected List<JavaAnnotation>JavaMethod.annotationsTheannotationson the methodprotected List<JavaAnnotation>JavaMethodBuilder.annotationsTheannotationson the methodMethods in com.github.tadukoo.java that return types with arguments of type JavaAnnotationModifier and TypeMethodDescriptionJavaClass.getAnnotations()JavaField.getAnnotations()JavaMethod.getAnnotations()Methods in com.github.tadukoo.java with parameters of type JavaAnnotationModifier and TypeMethodDescriptionJavaClassBuilder.annotation(JavaAnnotation annotation) JavaFieldBuilder.annotation(JavaAnnotation annotation) JavaMethodBuilder.annotation(JavaAnnotation annotation) Method parameters in com.github.tadukoo.java with type arguments of type JavaAnnotationModifier and TypeMethodDescriptionJavaClassBuilder.annotations(List<JavaAnnotation> annotations) JavaFieldBuilder.annotations(List<JavaAnnotation> annotations) JavaMethodBuilder.annotations(List<JavaAnnotation> annotations) Constructor parameters in com.github.tadukoo.java with type arguments of type JavaAnnotationModifierConstructorDescriptionprotectedJavaField(boolean editable, String sectionComment, Javadoc javadoc, List<JavaAnnotation> annotations, Visibility visibility, boolean isStatic, boolean isFinal, String type, String name, String value) Constructs a Java Field with the given parametersprotectedJavaMethod(boolean editable, String sectionComment, Javadoc javadoc, List<JavaAnnotation> annotations, Visibility visibility, boolean isStatic, 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 -
Uses of JavaAnnotation in com.github.tadukoo.java.editable
Subclasses of JavaAnnotation in com.github.tadukoo.java.editableModifier and TypeClassDescriptionclassRepresents an annotation in Java that can be modifiedMethods in com.github.tadukoo.java.editable with parameters of type JavaAnnotationModifier and TypeMethodDescriptionvoidEditableJavaClass.addAnnotation(JavaAnnotation annotation) voidEditableJavaField.addAnnotation(JavaAnnotation annotation) voidEditableJavaMethod.addAnnotation(JavaAnnotation annotation) Method parameters in com.github.tadukoo.java.editable with type arguments of type JavaAnnotationModifier and TypeMethodDescriptionvoidEditableJavaClass.addAnnotations(List<JavaAnnotation> annotations) voidEditableJavaField.addAnnotations(List<JavaAnnotation> annotations) voidEditableJavaMethod.addAnnotations(List<JavaAnnotation> annotations) voidEditableJavaClass.setAnnotations(List<JavaAnnotation> annotations) voidEditableJavaField.setAnnotations(List<JavaAnnotation> annotations) voidEditableJavaMethod.setAnnotations(List<JavaAnnotation> annotations) -
Uses of JavaAnnotation in com.github.tadukoo.java.uneditable
Subclasses of JavaAnnotation in com.github.tadukoo.java.uneditable