public interface UILabelRendererForHierarchy extends UIRenderer
A specific user interface label renderer component may be associated with any table
to render its records.
The component must be declared under the element
<osd:table>, whether or not it is in association with
<osd:defaultLabel> elements. For example:
<xs:annotation>
<xs:appinfo>
<osd:table>
<primaryKeys>/AssortmentID</primaryKeys>
<defaultLabel>Assortment: ${./AssortmentID}</defaultLabel>
<defaultLabel xml:lang="fr-FR">Assortiment: ${./AssortmentID}</defaultLabel>
<defaultLabel xml:lang="en-US">Assortment: ${./AssortmentID}</defaultLabel>
<defaultLabel osd:class="com.foo.AssortmentLabelRenderer"/>
<osd:table>
<xs:appinfo>
</xs:annotation>
where com.foo.AssortmentLabelRenderer is
the fully qualified name of a class implementing this interface.| Modifier and Type | Method and Description |
|---|---|
void |
displayLabel(UILabelRendererForHierarchyContext context)
Writes a user-friendly label to the specified context.
|
void displayLabel(UILabelRendererForHierarchyContext context)
The implementation of this method must support the execution of multiple concurrent threads.