Processes the contents of the internal TemplateElement list, and outputs the resulting text.
(Environment env)
| 85 | * and outputs the resulting text. |
| 86 | */ |
| 87 | void accept(Environment env) |
| 88 | throws TemplateException, IOException |
| 89 | { |
| 90 | for (int i=0; i<nestedElements.size(); i++) { |
| 91 | TemplateElement element = (TemplateElement) nestedElements.get(i); |
| 92 | env.visit(element); |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | public String getCanonicalForm() { |
| 97 | StringBuilder buf = new StringBuilder(); |