MCPcopy Create free account
hub / github.com/apache/freemarker / accept

Method accept

src/main/java/freemarker/core/MixedContent.java:87–94  ·  view source on GitHub ↗

Processes the contents of the internal TemplateElement list, and outputs the resulting text.

(Environment env)

Source from the content-addressed store, hash-verified

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();

Callers

nothing calls this directly

Calls 3

visitMethod · 0.80
sizeMethod · 0.65
getMethod · 0.65

Tested by

no test coverage detected