Interface MetadataReader
public interface MetadataReader
Simple facade for accessing class metadata,
as read by an ASM
ClassReader
.- Since:
- 2.5
- Author:
- Juergen Hoeller
-
Method Summary
Modifier and TypeMethodDescriptionRead full annotation metadata for the underlying class, including metadata for annotated methods.Read basic class metadata for the underlying class.Return the resource reference for the class file.
-
Method Details
-
getResource
Resource getResource()Return the resource reference for the class file. -
getClassMetadata
ClassMetadata getClassMetadata()Read basic class metadata for the underlying class. -
getAnnotationMetadata
AnnotationMetadata getAnnotationMetadata()Read full annotation metadata for the underlying class, including metadata for annotated methods.
-