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 to
BeginRender
, 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 the CleanupRender
phase. Return false to return to the BeginRender
phase.