|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ClassPredicate
An interface used when scanning jars for "interesting" classes. We can decide that a class is interesting based on either the class name (which doesn't require that the class be loaded) or attributes of the class itself (such as annotations or things that can be determined by reflection).
Method Summary | |
---|---|
boolean |
isSelected(Class<?> c)
Determine if the class is interesting. |
boolean |
isSelected(String packageName,
String className)
Determine if the class is interesting, based on package name and class name. |
Method Detail |
---|
boolean isSelected(String packageName, String className)
Determine if the class is interesting, based on package name and class name.
packageName
- - the package name of the class.className
- - the name of the class.
boolean isSelected(Class<?> c)
Determine if the class is interesting.
c
- - the class.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |