org.apache.jasper.compiler
class: Collector [javadoc |
source]
java.lang.Object
org.apache.jasper.compiler.Collector
Collect info about the page and nodes, and make them availabe through
the PageInfo object.
- author:
Kin-man - Chung
- author:
Mark - Roth
| Nested Class Summary: |
|---|
| static class | Collector.CollectVisitor | A visitor for collecting information on the page and the body of
the custom tags. |
| Method from org.apache.jasper.compiler.Collector Summary: |
|---|
|
collect |
| Method from org.apache.jasper.compiler.Collector Detail: |
public static void collect(Compiler compiler,
Node.Nodes page) throws JasperException {
CollectVisitor collectVisitor = new CollectVisitor();
page.visit(collectVisitor);
collectVisitor.updatePageInfo(compiler.getPageInfo());
}
|