Uses of Interface
org.codehaus.janino.Java.Annotation
Packages that use Java.Annotation
Package
Description
The core of the Janino Java compiler.
Application-independent helper classes.
-
Uses of Java.Annotation in org.codehaus.janino
Classes in org.codehaus.janino that implement Java.AnnotationModifier and TypeClassDescriptionstatic classConvenience class.static final classRepresentation of a "marker annotation", i.e.static final classA "normal annotation", i.e.static final classRepresentation of a "single-element annotation", i.e.Fields in org.codehaus.janino declared as Java.AnnotationModifier and TypeFieldDescriptionfinal Java.Annotation[]Java.ReferenceType.annotationsThe "type annotations" of this type, see JLS9, 9.7.4.Methods in org.codehaus.janino that return Java.AnnotationModifier and TypeMethodDescriptionJava.AbstractTypeBodyDeclaration.getAnnotations()Java.AbstractTypeDeclaration.getAnnotations()Java.Annotatable.getAnnotations()Java.FieldDeclaration.getAnnotations()Java.FunctionDeclarator.getAnnotations()private static Java.Annotation[]Java.getAnnotations(Java.Modifier[] modifiers) Java.PackageMemberInterfaceDeclaration.getAnnotations()private Java.AnnotationParser.parseAnnotation()Annotation := MarkerAnnotation // JLS7 9.7.2 | SingleElementAnnotation // JLS7 9.7.3 | NormalAnnotation // JLS7 9.7.1 MarkerAnnotation := '@' Identifier SingleElementAnnotation := '@' Identifier '(' ElementValue ')' NormalAnnotation := '@' TypeName '(' ElementValuePairsOpt ')' ElementValuePairsOpt := [ ElementValuePair { ',' ElementValuePair } ]Methods in org.codehaus.janino with parameters of type Java.AnnotationModifier and TypeMethodDescriptionprivate voidUnitCompiler.compileAnnotations(Java.Annotation[] annotations, Annotatable target, ClassFile cf) Converts and adds the annotations to the target.private IClass.IFieldUnitCompiler.compileField(Java.TypeDeclaration declaringType, Java.Annotation[] annotations, Access access, boolean statiC, boolean finaL, Java.Type type, int brackets, String name, Java.ArrayInitializerOrRvalue initializer) Compiles one variable declarator into anIClass.IField.private Java.MethodDeclaratorScriptEvaluator.makeMethodDeclaration(Location location, Java.Annotation[] annotations, boolean staticMethod, Class<?> returnType, String methodName, Class<?>[] parameterTypes, String[] parameterNames, Class<?>[] thrownExceptions, Java.BlockStatement[] statements) private IClass.IAnnotationUnitCompiler.toIAnnotation(Java.Annotation annotation) private IClass.IAnnotation[]UnitCompiler.toIAnnotations(Java.Annotation[] annotations) private voidUnparser.unparseAnnotations(Java.Annotation[] annotations) Visitor.ElementValueVisitor.visitAnnotation(Java.Annotation a) Constructors in org.codehaus.janino with parameters of type Java.AnnotationModifierConstructorDescriptionReferenceType(Location location, Java.Annotation[] annotations, String[] identifiers, Java.TypeArgument[] typeArguments) -
Uses of Java.Annotation in org.codehaus.janino.util
Fields in org.codehaus.janino.util with type parameters of type Java.AnnotationModifier and TypeFieldDescriptionprivate final Visitor.AnnotationVisitor<Java.Annotation, CompileException> DeepCopier.annotationCopierMethods in org.codehaus.janino.util that return Java.AnnotationModifier and TypeMethodDescriptionDeepCopier.copyAnnotation(Java.Annotation subject) DeepCopier.copyAnnotations(Java.Annotation[] subject) DeepCopier.copyMarkerAnnotation(Java.MarkerAnnotation subject) DeepCopier.copyNormalAnnotation(Java.NormalAnnotation subject) DeepCopier.copySingleElementAnnotation(Java.SingleElementAnnotation subject) Methods in org.codehaus.janino.util with parameters of type Java.AnnotationModifier and TypeMethodDescriptionDeepCopier.copyAnnotation(Java.Annotation subject) DeepCopier.copyAnnotations(Java.Annotation[] subject) voidAbstractTraverser.traverseAnnotation(Java.Annotation a) voidTraverser.traverseAnnotation(Java.Annotation a) voidAbstractTraverser.visitAnnotation(Java.Annotation a) voidTraverser.visitAnnotation(Java.Annotation a)