Package org.apache.tapestry5.annotations
Annotation Type SetupRender
-
@Target(METHOD) @Retention(RUNTIME) @Documented @UseWith({COMPONENT,MIXIN,PAGE}) public @interface SetupRender
Marker annotation for methods that should be executed during the SetupRender phase. Such methods may optionally take aMarkupWriter
parameter, and may return void or boolean. Returning true or void will advance to theBeginRender
phase. Return false to skip the BeginRender phase and proceed directly to theCleanupRender
phase.