Package org.eclipse.mat.inspections
Class FindLeaksQuery2
- java.lang.Object
-
- org.eclipse.mat.inspections.FindLeaksQuery2
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
FindLeaksQuery2.AccumulationPoint
static class
FindLeaksQuery2.SuspectsResultTable
-
Field Summary
Fields Modifier and Type Field Description ISnapshot
baseline
double
big_drop_ratio
String[]
extraReferences
File
extraReferencesListFile
Pattern
mask
int
max_paths
String
options
ISnapshot
snapshot
int
threshold_percent
-
Constructor Summary
Constructors Constructor Description FindLeaksQuery2()
-
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
-
baseline
public ISnapshot baseline
-
threshold_percent
public int threshold_percent
-
max_paths
public int max_paths
-
big_drop_ratio
public double big_drop_ratio
-
options
public String options
-
mask
public Pattern mask
-
extraReferences
public String[] extraReferences
-
extraReferencesListFile
public File extraReferencesListFile
-
-
Method Detail
-
execute
public IResult execute(IProgressListener listener) throws 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.
-
-