1 package com.opensymphony.webwork.components.template; 2 3 import java.util.Map; 4 5 6 /** 7 * Any template language which wants to support UI tag templating needs to provide an implementation of this interface 8 * to handle rendering the template 9 * Date: Sep 28, 2004 11:56:34 AM 10 * 11 * @author jcarreira 12 */ 13 public interface TemplateEngine { 14 void renderTemplate(TemplateRenderingContext templateContext) throws Exception; 15 16 Map getThemeProps(Template template); 17 } 18