FileDocCategorySizeDatePackage
Collector.javaAPI DocGlassfish v2 API8137Fri May 04 22:32:52 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());