FileDocCategorySizeDatePackage
Collector.javaAPI DocApache Tomcat 6.0.147586Fri Jul 20 04:20:32 BST 2007org.apache.jasper.compiler

Collector

public class Collector extends Object
Collect info about the page and nodes, and make them availabe through the PageInfo object.
author
Kin-man Chung
author
Mark Roth

Fields Summary
Constructors Summary
Methods Summary
public static voidcollect(Compiler compiler, Node.Nodes page)


    CollectVisitor collectVisitor = new CollectVisitor();
        page.visit(collectVisitor);
        collectVisitor.updatePageInfo(compiler.getPageInfo());