org.apache.tapestry.services
Interface ComponentRenderWorker

All Known Implementing Classes:
ComponentEventConnectionWorker, MockComponentRenderWorker

public interface ComponentRenderWorker

Interface that defines the chain of render workers that will be invoked after all IComponent render invocations.

Author:
jkuhnert

Method Summary
 void renderBody(IRequestCycle cycle, Body component)
          Special render for handling html element targets.
 void renderComponent(IRequestCycle cycle, IComponent component)
          Invoked just after the components render call, giving services implementing the ComponentRenderWorker interface a guaranteed state to work off of.
 

Method Detail

renderComponent

void renderComponent(IRequestCycle cycle,
                     IComponent component)
Invoked just after the components render call, giving services implementing the ComponentRenderWorker interface a guaranteed state to work off of.

Parameters:
cycle - The associated request for this render.
component - The component that has just been rendered.

renderBody

void renderBody(IRequestCycle cycle,
                Body component)
Special render for handling html element targets. This is invoked just after the body component renders its body, but before the script data is written out.

Parameters:
cycle - The associated request cycle.
component - The Body component, which holds the needed PageRenderSupport object.


Copyright © 2006-2008 Apache Software Foundation. All Rights Reserved.