Class JSPClassScanner
- java.lang.Object
-
- com.intergral.deep.agent.tracepoint.inst.JSPClassScanner
-
- All Implemented Interfaces:
IClassScanner
public class JSPClassScanner extends Object implements IClassScanner
This scanner is meant to find JSP classes that have tracepoints.
-
-
Constructor Summary
Constructors Constructor Description JSPClassScanner(Map<String,TracePointConfig> tracepoints, String jspSuffix, List<String> jspPackages)
Create a new JSP scanner.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isComplete()
Is this class scanner complete.boolean
scanClass(Class<?> loadedClass)
Scan this class.
-
-
-
Method Detail
-
scanClass
public boolean scanClass(Class<?> loadedClass)
Description copied from interface:IClassScanner
Scan this class.- Specified by:
scanClass
in interfaceIClassScanner
- Parameters:
loadedClass
- the class to sacn- Returns:
true
if we should include this class
-
isComplete
public boolean isComplete()
Description copied from interface:IClassScanner
Is this class scanner complete.- Specified by:
isComplete
in interfaceIClassScanner
- Returns:
true
if this scanner has nothing more to find
-
-