Package org.apache.tapestry5.annotations
Annotation Type AfterRenderBody
-
@Target(METHOD) @Retention(RUNTIME) @Documented @UseWith({COMPONENT,MIXIN,PAGE}) public @interface AfterRenderBody
Corresponds toBeforeRenderBody
, allowing additional markup after rendering the body of a component, but before rendering the rest of the component's template. Return true (the default) to progress to theAfterRenderTemplate
orAfterRender
phase (depending on whether the component does or does not have a template). Return false to return to theBeforeRenderBody
phase.