Uses of Interface
org.netbeans.insane.scanner.Filter

Packages that use Filter
org.netbeans.insane.scanner   
 

Uses of Filter in org.netbeans.insane.scanner
 

Methods in org.netbeans.insane.scanner that return Filter
static Filter ScannerUtils.compoundFilter(Filter[] parts)
          Creates a filter that will wrap and delegate to more filters, performing a logical and operation on their results
static Filter ScannerUtils.skipNonStrongReferencesFilter()
          A Filter factory that creates a Filter ignoring weak and soft references.
static Filter ScannerUtils.skipObjectsFilter(java.util.Collection except, boolean include)
          A Filter factory that creates a Filter ignoring given collection of objects and/or their outgoing references.
static Filter ScannerUtils.skipReferencesFilter(java.util.Collection except)
          A Filter factory that creates a Filter ignoring given references
 

Methods in org.netbeans.insane.scanner with parameters of type Filter
static Filter ScannerUtils.compoundFilter(Filter[] parts)
          Creates a filter that will wrap and delegate to more filters, performing a logical and operation on their results
static int ScannerUtils.recursiveSizeOf(java.util.Collection roots, Filter f)
           
static void ScannerUtils.scan(Filter f, Visitor v, java.util.Collection roots, boolean analyzeStaticData)
          Traverse the graph of objects reachable from roots Collection, notifying the Visitor.
static void ScannerUtils.scanExclusivelyInAWT(Filter f, Visitor v, java.util.Set roots)
          Traverse the graph of objects reachable from roots Collection, notifying the Visitor.