Uses of Interface
org.apache.commons.classscan.model.MetaAnnotation

Packages that use MetaAnnotation
org.apache.commons.classscan.bcel This package is an implementation of the org.apache.commons.classscan interfaces. 
org.apache.commons.classscan.builtin This package contains builtin implementations of the org.apache.commons.classscan.spi providers. 
org.apache.commons.classscan.model The model package contains metadata classes which allow client programs to introspect class information about annotations, methods, and fields without having the jvm load and resolve the class. 
org.apache.commons.classscan.spi.model The spi.model package contains metadata classes which allow the providers to give class information about annotations, methods, and fields. 
 

Uses of MetaAnnotation in org.apache.commons.classscan.bcel
 

Classes in org.apache.commons.classscan.bcel that implement MetaAnnotation
 class BcelAnnotation
           
 

Methods in org.apache.commons.classscan.bcel that return MetaAnnotation
 MetaAnnotation BcelParameter.getAnnotation(String annotationName)
           
 MetaAnnotation BcelMethod.getAnnotation(String annotationName)
           
 MetaAnnotation BcelField.getAnnotation(String annotationName)
           
 MetaAnnotation BcelClass.getAnnotation(String annotationName)
           
 

Methods in org.apache.commons.classscan.bcel that return types with arguments of type MetaAnnotation
 Set<? extends MetaAnnotation> BcelParameter.getAnnotations()
           
 Set<? extends MetaAnnotation> BcelMethod.getAnnotations()
           
 Set<? extends MetaAnnotation> BcelField.getAnnotations()
           
 Set<? extends MetaAnnotation> BcelClass.getAnnotations()
           
 

Uses of MetaAnnotation in org.apache.commons.classscan.builtin
 

Methods in org.apache.commons.classscan.builtin that return MetaAnnotation
 MetaAnnotation PrimitiveClass.getAnnotation(String annotationName)
           
 

Methods in org.apache.commons.classscan.builtin that return types with arguments of type MetaAnnotation
 Set<? extends MetaAnnotation> PrimitiveClass.getAnnotations()
           
 

Uses of MetaAnnotation in org.apache.commons.classscan.model
 

Methods in org.apache.commons.classscan.model that return MetaAnnotation
 MetaAnnotation MetaParameter.getAnnotation(String annotationName)
          Get metadata about a particular annotation on the parameter.
 MetaAnnotation MetaMethod.getAnnotation(String annotationName)
          Get metadata about a particular annotation on the corresponding method.
 MetaAnnotation MetaField.getAnnotation(String annotationName)
          Get metadata about a particular annotation on the corresponding field.
 MetaAnnotation MetaClass.getAnnotation(String annotationName)
          Get metadata about a particular annotation on the corresponding Class.
 

Methods in org.apache.commons.classscan.model that return types with arguments of type MetaAnnotation
 Set<? extends MetaAnnotation> MetaParameter.getAnnotations()
          Get metadata about the annotations on the parameter.
 Set<? extends MetaAnnotation> MetaMethod.getAnnotations()
          Get metadata about the annotations on the method or constructor.
 Set<? extends MetaAnnotation> MetaField.getAnnotations()
          Get metadata about the annotations on the field.
 Set<? extends MetaAnnotation> MetaClass.getAnnotations()
          Get metadata about the annotations on the corresponding Class.
 

Uses of MetaAnnotation in org.apache.commons.classscan.spi.model
 

Subinterfaces of MetaAnnotation in org.apache.commons.classscan.spi.model
 interface SpiMetaAnnotation
          Metadata about an Annotation
 



Copyright © 2012 The Apache Software Foundation. All Rights Reserved.