Package org.eclipse.mat.inspections
Class LeakHunterQuery
- java.lang.Object
-
- org.eclipse.mat.inspections.LeakHunterQuery
-
- All Implemented Interfaces:
IQuery
- Direct Known Subclasses:
LeakHunterQuery2
public class LeakHunterQuery extends java.lang.Object implements IQuery
-
-
Field Summary
Fields Modifier and Type Field Description int
max_paths
java.util.regex.Pattern
skipPattern
ISnapshot
snapshot
int
threshold_percent
-
Constructor Summary
Constructors Constructor Description LeakHunterQuery()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IResult
execute(IProgressListener listener)
The execute method is called after all arguments have been injected into the query instance.
-
-
-
Field Detail
-
snapshot
public ISnapshot snapshot
-
threshold_percent
public int threshold_percent
-
max_paths
public int max_paths
-
skipPattern
public java.util.regex.Pattern skipPattern
-
-
Method Detail
-
execute
public IResult execute(IProgressListener listener) throws java.lang.Exception
Description copied from interface:IQuery
The execute method is called after all arguments have been injected into the query instance. Typical results areTextResult
,CompositeResult
,SectionSpec
etc.
-
-