Package org.apache.tapestry5.services
Interface MarkupRendererFilter
- All Known Implementing Classes:
AddBrowserCompatibilityStyles
,CaptureRenderedDocument
,ConfigureHTMLElementFilter
,PageNameMetaInjector
public interface MarkupRendererFilter
Filter interface for
MarkupRenderer
, which allows for code to execute before
and/or after the main rendering process. Typically, this is to allow for the placement of
environmental services.-
Method Summary
Modifier and TypeMethodDescriptionvoid
renderMarkup
(MarkupWriter writer, MarkupRenderer renderer) Implementations should perform work before or after passing the writer to the renderer.
-
Method Details
-
renderMarkup
Implementations should perform work before or after passing the writer to the renderer.- Parameters:
writer
- to which markup should be writtenrenderer
- delegate to which the writer should be passed.
-