Save This Page
Home » tapestry-src-5.0.19 » org.apache.tapestry5.runtime » [javadoc | source]
org.apache.tapestry5.runtime
public interface: RenderCommand [javadoc | source] A command used during rendering of a page.
Method from org.apache.tapestry5.runtime.RenderCommand Summary:
render
Method from org.apache.tapestry5.runtime.RenderCommand Detail:
 public  void render(MarkupWriter writer,
    RenderQueue queue)
    Invoked on an object to request that it render itself. This involves a mix of invoking methods on the writer, and queueing up additional commands (often, representing children of the object that was invoked) to perform additional rendering.

    In this way, rendering is a tail recursive algorithm, but is not implemented using tail recursion.