private void evaluate()

in src/main/java/org/apache/creadur/tentacles/TemplateBuilder.java [74:87]


    private void evaluate(final Writer writer) {
        try {
            final Reader templateReader =
                    this.tentaclesResources.read(this.templateName);

            final VelocityContext context =
                    new VelocityContext(this.templateContextMap);
            this.engine.evaluate(context, writer, LOG_TAG_NAME, templateReader);

        } catch (final IOException ioe) {
            throw new RuntimeException("can't apply template "
                    + this.templateName, ioe);
        }
    }