Returns a template retrieved using the path specified.
/*
*Look for the named template in the cache and, if it is not there,
*retrieve it and store it in the cache.
*/
String template = templateCache.get(templateName);
if (template == null) {
template = Util.loadResource(this.getClass(), TEMPLATES_PATH_PREFIX + templateName);
templateCache.put(templateName, template);
}
/*
*Regardless of how the template was found, return it.
*/
return template;