Visit the body of a node, using the current visitor @param n The node to visit @throws JasperException if an error occurs while visiting the body
(Node n)
| 2861 | * @throws JasperException if an error occurs while visiting the body |
| 2862 | */ |
| 2863 | protected void visitBody(Node n) throws JasperException { |
| 2864 | if (n.getBody() != null) { |
| 2865 | n.getBody().visit(this); |
| 2866 | } |
| 2867 | } |
| 2868 | |
| 2869 | /** |
| 2870 | * Visits a root node. |