Package org.apache.wicket.markup
Interface IMarkupResourceStreamProvider
-
- All Known Implementing Classes:
DefaultMarkupResourceStreamProvider
public interface IMarkupResourceStreamProvider
To be implemented by MarkupContainer which wish to implement their own algorithms for loading the markup resource stream.Since 1.5 you may also use Component.setMarkup() or getMarkup() to attach Markup to your component.
Note: IResourceStreamLocators should be used in case the strategy to find a markup resource is meant to be applied to ALL components of your application.
Note: See IMarkupCacheKeyProvider if you wish to implement your own cache key algorithm, which sometimes is useful when the MarkupContainer implements its own IMarkupResourceStreamProvider as well.
- Author:
- Juergen Donnerstag
- See Also:
IMarkupCacheKeyProvider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IResourceStream
getMarkupResourceStream(MarkupContainer container, Class<?> containerClass)
Create a new markup resource stream for the container.
-
-
-
Method Detail
-
getMarkupResourceStream
IResourceStream getMarkupResourceStream(MarkupContainer container, Class<?> containerClass)
Create a new markup resource stream for the container.Note: usually it will only called once, as the IResourceStream will be cached by MarkupCache.
- Parameters:
container
- The MarkupContainer which requests to load the Markup resource streamcontainerClass
- The container the markup should be associated with- Returns:
- A IResourceStream if the resource was found
-
-