Interface IResourceBundle
-
- All Known Implementing Classes:
ConcatResourceBundleReference
,ReplacementResourceBundleReference
,ResourceBundleReference
public interface IResourceBundle
Interface implemented byResourceReference
s that are bundles. A bundle is a resource that combines several resources in one item, for example, several javascript files combined into one. Bundles are rendered as a singleHeaderItem
, rather than several, and require only one HTTP request to download, which can greatly reduce the number HTTP requests needed to get all resources for a page. Resources need to be registered inResourceBundles
underApplication.getResourceBundles()
.- Author:
- papegaaij
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Iterable<? extends HeaderItem>
getProvidedResources()
-
-
-
Method Detail
-
getProvidedResources
Iterable<? extends HeaderItem> getProvidedResources()
- Returns:
- the resources that are provided (part of) this resource.
-
-