Interface IClassScanner
-
- All Known Implementing Classes:
CFClassScanner
,CompositeClassScanner
,JSPClassScanner
,SetClassScanner
public interface IClassScanner
Used to define a method to scan the loaded classes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isComplete()
Is this class scanner complete.boolean
scanClass(Class<?> clazz)
Scan this class.
-
-
-
Method Detail
-
scanClass
boolean scanClass(Class<?> clazz)
Scan this class.- Parameters:
clazz
- the class to sacn- Returns:
true
if we should include this class
-
isComplete
boolean isComplete()
Is this class scanner complete.- Returns:
true
if this scanner has nothing more to find
-
-