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

Packages that use Visitor
org.netbeans.insane.scanner   
 

Uses of Visitor in org.netbeans.insane.scanner
 

Classes in org.netbeans.insane.scanner that implement Visitor
 class CountingVisitor
          A visitor implementation that counts occurence and total size of found objects, classified by their class.
 class SimpleXmlVisitor
          A visitor that stores the heap graph to a XML file in a simple format, which was used by the original Insane implementation.
 

Methods in org.netbeans.insane.scanner that return Visitor
static Visitor ScannerUtils.compoundVisitor(Visitor[] parts)
          Creates a visitor that will wrap and delegate to more visitors during one scan
 

Methods in org.netbeans.insane.scanner with parameters of type Visitor
static Visitor ScannerUtils.compoundVisitor(Visitor[] parts)
          Creates a visitor that will wrap and delegate to more visitors during one scan
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.