"Visit" the template element.
(TemplateElement element)
| 214 | * "Visit" the template element. |
| 215 | */ |
| 216 | void visit(TemplateElement element) |
| 217 | throws TemplateException, IOException |
| 218 | { |
| 219 | pushElement(element); |
| 220 | try { |
| 221 | element.accept(this); |
| 222 | } |
| 223 | catch (TemplateException te) { |
| 224 | handleTemplateException(te); |
| 225 | } |
| 226 | finally { |
| 227 | popElement(); |
| 228 | } |
| 229 | } |
| 230 | |
| 231 | private static final TemplateModel[] NO_OUT_ARGS = new TemplateModel[0]; |
| 232 |
no test coverage detected