Package org.apache.tapestry5.annotations
Annotation Type AfterRender
-
@Target(METHOD) @Retention(RUNTIME) @Documented @UseWith({COMPONENT,MIXIN,PAGE}) public @interface AfterRender
Marker annotation for methods associated with the AfterRender phase. This corresponds closely toBeginRender
, but occurs after the template and body of the component have been rendered. Often, this is used to render a close tag. Return void or true (the default) to advance to theCleanupRender
phase. Return false to return to theBeginRender
phase.