use of org.eclipse.scout.rt.ui.html.res.loader.HtmlFileLoader in project scout.rt by eclipse.
the class PrebuildFiles method loadResource.
protected HttpCacheObject loadResource(String file) throws IOException {
String defaultTheme = UiThemeUtility.getConfiguredTheme();
HtmlFileLoader loader = new HtmlFileLoader(defaultTheme, true, true);
HttpCacheKey cacheKey = loader.createCacheKey(file);
return loader.loadResource(cacheKey);
}
Aggregations