Visit the nodes in the list with the supplied visitor @param v The visitor used @throws JasperException if an error occurs while visiting a node
(Visitor v)
| 2772 | * @throws JasperException if an error occurs while visiting a node |
| 2773 | */ |
| 2774 | public void visit(Visitor v) throws JasperException { |
| 2775 | for (Node n : list) { |
| 2776 | n.accept(v); |
| 2777 | } |
| 2778 | } |
| 2779 | |
| 2780 | /** |
| 2781 | * Returns the number of nodes in this collection. |