Interface IModifierList
-
- All Known Implementing Classes:
JavaAsmModifierList
,JavaSourceModifierList
public interface IModifierList
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IAnnotationInfo
getAnnotation(Class annotationClass)
IAnnotationInfo[]
getAnnotations()
int
getModifiers()
boolean
hasModifier(int modifierType)
Returns true if this list has the modifier and false otherwise.boolean
isAnnotationPresent(Class<? extends Annotation> annotationClass)
-
-
-
Method Detail
-
getAnnotations
IAnnotationInfo[] getAnnotations()
-
getAnnotation
IAnnotationInfo getAnnotation(Class annotationClass)
-
isAnnotationPresent
boolean isAnnotationPresent(Class<? extends Annotation> annotationClass)
-
hasModifier
boolean hasModifier(int modifierType)
Returns true if this list has the modifier and false otherwise.- Parameters:
modifierType
- one of the constants of java.lang.reflect.Modifier
-
getModifiers
int getModifiers()
-
-