Uses of Class
org.aspectj.apache.bcel.classfile.annotation.AnnotationGen

Packages that use AnnotationGen
org.aspectj.apache.bcel.classfile   
org.aspectj.apache.bcel.classfile.annotation   
org.aspectj.apache.bcel.generic   
org.aspectj.weaver.bcel   
 

Uses of AnnotationGen in org.aspectj.apache.bcel.classfile
 

Fields in org.aspectj.apache.bcel.classfile declared as AnnotationGen
static AnnotationGen[][] Method.NO_PARAMETER_ANNOTATIONS
           
 

Methods in org.aspectj.apache.bcel.classfile that return AnnotationGen
 AnnotationGen[] FieldOrMethod.getAnnotations()
           
 AnnotationGen[] JavaClass.getAnnotations()
           
 AnnotationGen[] Method.getAnnotationsOnParameter(int i)
           
 AnnotationGen[][] Method.getParameterAnnotations()
           
 

Method parameters in org.aspectj.apache.bcel.classfile with type arguments of type AnnotationGen
static java.util.Collection<RuntimeAnnos> Utility.getAnnotationAttributes(ConstantPool cp, java.util.List<AnnotationGen> annotations)
          Converts a list of AnnotationGen objects into a set of attributes that can be attached to the class file.
 

Uses of AnnotationGen in org.aspectj.apache.bcel.classfile.annotation
 

Fields in org.aspectj.apache.bcel.classfile.annotation declared as AnnotationGen
static AnnotationGen[] AnnotationGen.NO_ANNOTATIONS
           
 

Methods in org.aspectj.apache.bcel.classfile.annotation that return AnnotationGen
 AnnotationGen AnnotationElementValue.getAnnotation()
           
 AnnotationGen[] RuntimeParamAnnos.getAnnotationsOnParameter(int parameterIndex)
           
static AnnotationGen AnnotationGen.read(java.io.DataInputStream dis, ConstantPool cpool, boolean b)
           
 

Methods in org.aspectj.apache.bcel.classfile.annotation that return types with arguments of type AnnotationGen
 java.util.List<AnnotationGen> RuntimeAnnos.getAnnotations()
           
 

Constructors in org.aspectj.apache.bcel.classfile.annotation with parameters of type AnnotationGen
AnnotationElementValue(AnnotationGen a, ConstantPool cpool)
           
AnnotationElementValue(int type, AnnotationGen annotation, ConstantPool cpool)
           
AnnotationGen(AnnotationGen a, ConstantPool cpool, boolean copyPoolEntries)
           
 

Uses of AnnotationGen in org.aspectj.apache.bcel.generic
 

Methods in org.aspectj.apache.bcel.generic that return AnnotationGen
 AnnotationGen[] ClassGen.getAnnotations()
           
 

Methods in org.aspectj.apache.bcel.generic that return types with arguments of type AnnotationGen
 java.util.List<AnnotationGen> FieldGenOrMethodGen.getAnnotations()
           
 

Methods in org.aspectj.apache.bcel.generic with parameters of type AnnotationGen
 void FieldGenOrMethodGen.addAnnotation(AnnotationGen ag)
           
 void ClassGen.addAnnotation(AnnotationGen a)
           
 void MethodGen.addParameterAnnotation(int parameterIndex, AnnotationGen annotation)
           
 void FieldGenOrMethodGen.removeAnnotation(AnnotationGen ag)
           
 void ClassGen.removeAnnotation(AnnotationGen a)
           
 

Uses of AnnotationGen in org.aspectj.weaver.bcel
 

Subclasses of AnnotationGen in org.aspectj.weaver.bcel
 class FakeAnnotation
          For implementing declare @type interacting with declare @parents during compilation - we need to be able to add an annotation to 'binary type binding' (this is how types are seen during incremental compilation).
 

Methods in org.aspectj.weaver.bcel that return AnnotationGen
 AnnotationGen BcelAnnotation.getBcelAnnotation()
           
 

Methods in org.aspectj.weaver.bcel with parameters of type AnnotationGen
 void LazyClassGen.addAnnotation(AnnotationGen a)
           
 

Constructors in org.aspectj.weaver.bcel with parameters of type AnnotationGen
BcelAnnotation(AnnotationGen theBcelAnnotation, ResolvedType resolvedAnnotationType)
           
BcelAnnotation(AnnotationGen theBcelAnnotation, World world)