Package org.apache.tiles.request.render
Interface Renderer
- All Known Implementing Classes:
ChainedDelegateRenderer
,DefinitionRenderer
,DispatchRenderer
,StringRenderer
,StrutsFreeMarkerAttributeRenderer
,VelocityRenderer
public interface Renderer
An object that can render a path, depending on the request passed as a parameter.
-
Method Summary
-
Method Details
-
render
Renders a path.- Parameters:
path
- The path to render.request
- The Tiles request context.- Throws:
IOException
- If something goes wrong during rendition.
-
isRenderable
Checks if this renderer can render a path. Note that this does not mean it is the best renderer available, but checks only its capability.- Parameters:
path
- The path to be rendered.request
- The request context.- Returns:
true
if this renderer can render the attribute.
-