org.apache.tapestry.corelib.base.AbstractPropertyOutput

Base class for components that output a property value using a org.apache.tapestry.beaneditor.PropertyModel. There's a relationship between such a component and its container, as the container may provide messages in its message catalog needed by the org.apache.tapestry.Blocks that render the values. In addition, the component may be passed Block parameters that are output overrides for specified properties. Subclasses will implement a beginRender() method that invokes org.apache.tapestry.corelib.base.AbstractPropertyOutput#renderPropertyValue(MarkupWriter, String).

[JavaDoc]

Component Parameters

NameTypeFlagsDefaultDefault PrefixDescription
modelorg.apache.tapestry.beaneditor.PropertyModelRequiredpropModel for property displayed by the cell.
objectObjectRequiredpropIdentifies the object being rendered. The component will extract a property from the object and render its value (or delegate to a org.apache.tapestry.Block that will do so).
overridesorg.apache.tapestry.ComponentResourcesRequiredpropResources used to search for block parameter overrides (this is normally the enclosing Grid component's resources).

Back to index