Visits a root node. @param n The root node to visit @throws JasperException if an error occurs while visiting the node
(Root n)
| 2873 | * @throws JasperException if an error occurs while visiting the node |
| 2874 | */ |
| 2875 | public void visit(Root n) throws JasperException { |
| 2876 | doVisit(n); |
| 2877 | visitBody(n); |
| 2878 | } |
| 2879 | |
| 2880 | /** |
| 2881 | * Visits a JSP root node. |