01: /*
02: * Created on Apr 26, 2006
03: */
04: package uk.org.ponder.rsf.templateresolver;
05:
06: import uk.org.ponder.rsf.viewstate.ViewParameters;
07:
08: /** Used to infer the extension for the template file used to render a view */
09:
10: public interface TemplateExtensionInferrer {
11: /** @return The extension for the template file to be used for the supplied
12: * view id, <i>OMITTING</i> the separating period ".".
13: */
14: public String inferTemplateExtension(ViewParameters viewparams);
15: }
|