com.acciente.induction.template
Interface TemplatingEngine

All Known Implementing Classes:
FreemarkerTemplatingEngine

public interface TemplatingEngine

This interface is used to abstract access to templating engine used.

A class implementing this interface is expected to have a single public contructor adhering to the following convention:

- the single constructor should accepts no arguments or

- the single constructor should declare formal parameters using only the following types:

- javax.servlet.ServletConfig

- com.acciente.induction.init.config.Config.Templating

Author:
Adinath Raveendra Raj

Method Summary
 void process(Template oTemplate, Writer oWriter)
          This method is used to process a template via this instance of the templating engine
 

Method Detail

process

void process(Template oTemplate,
             Writer oWriter)
             throws TemplatingEngineException,
                    IOException
This method is used to process a template via this instance of the templating engine

Parameters:
oTemplate - the template object to process
Throws:
TemplatingEngineException
IOException


Copyright © 2008-2013 Acciente, LLC. All Rights Reserved.