Class ExpansionPageElement
- java.lang.Object
-
- org.apache.tapestry5.internal.structure.ExpansionPageElement
-
- All Implemented Interfaces:
RenderCommand
public class ExpansionPageElement extends Object implements RenderCommand
-
-
Constructor Summary
Constructors Constructor Description ExpansionPageElement(Binding binding, TypeCoercer coercer)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
render(MarkupWriter writer, RenderQueue queue)
Invoked on an object to request that it render itself.String
toString()
-
-
-
Constructor Detail
-
ExpansionPageElement
public ExpansionPageElement(Binding binding, TypeCoercer coercer)
-
-
Method Detail
-
render
public void render(MarkupWriter writer, RenderQueue queue)
Description copied from interface:RenderCommand
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.- Specified by:
render
in interfaceRenderCommand
-
-