org.codehaus.aspectwerkz.reflect
Interface ReflectionInfo

All Known Subinterfaces:
ClassInfo, ConstructorInfo, FieldInfo, MemberInfo, MethodInfo
All Known Implementing Classes:
AsmClassInfo, AsmConstructorInfo, AsmFieldInfo, AsmMemberInfo, AsmMethodInfo, ClassInfo.NullClassInfo, JavaClassInfo, JavaConstructorInfo, JavaFieldInfo, JavaMemberInfo, JavaMethodInfo, JavassistClassInfo, JavassistConstructorInfo, JavassistFieldInfo, JavassistMemberInfo, JavassistMethodInfo

public interface ReflectionInfo

Base interface for the reflection info hierarchy.

Author:
Jonas Bonér

Method Summary
 List getAnnotations()
          Returns the annotation infos.
 int getModifiers()
          Returns the class modifiers.
 String getName()
          Returns the name of the class.
 

Method Detail

getName

public String getName()
Returns the name of the class.

Returns:
the name of the class

getModifiers

public int getModifiers()
Returns the class modifiers.

Returns:
the class modifiers

getAnnotations

public List getAnnotations()
Returns the annotation infos.

Returns:
the annotations infos


Copyright © 2002-2004 Jonas Bonér, Alexandre Vasseur. All Rights Reserved.