Package org.apache.tapestry5.annotations
Annotation Type BeginRender
-
@Target(METHOD) @Retention(RUNTIME) @Documented @UseWith({COMPONENT,MIXIN,PAGE}) public @interface BeginRender
Marker annotation for methods that should be executed at the start of rendering the component. This usually includes rendering of the component's start tag. Such methods may optionally take aMarkupWriter
parameter, and may return void or boolean. Returning true or void will allow the component to advance into the render template / render body phase. If a body is present, theBeforeRenderBody
phase will execute. If a component has a template, theBeforeRenderTemplate
phase will execute (and the render body will only occur if the template directs so). Either way, theAfterRender
phase will execute after the template and/or body have rendered. A component with a body but without a template will still see theBeforeRenderBody
phase execute. Returning false will skip rendering of the template and/or body, and jump directly to theAfterRender
phase.