Package com.orchestranetworks.schema
Interface SchemaDocumentationContext
-
public interface SchemaDocumentationContext
This class provides the context used for computing the label and description associated with a node in a data model.- See Also:
- UI Developer Guide
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Locale
getLocale()
Returns the current locale, nevernull
.Repository
getRepository()
Returns the EBX® repository.SchemaNode
getSchemaNode()
Returns the node to which this context is attached.Session
getSession()
Returns the current session ornull
.UserMessage
getStaticDescription()
Returns the description that is statically defined in the data model.UserMessage
getStaticLabel()
Returns the label that is statically defined in the data model.
-
-
-
Method Detail
-
getSchemaNode
SchemaNode getSchemaNode()
Returns the node to which this context is attached.
-
getRepository
Repository getRepository()
Returns the EBX® repository.
-
getLocale
Locale getLocale()
Returns the current locale, nevernull
.
-
getSession
Session getSession()
Returns the current session ornull
. Returnsnull
if the methodSchemaNode.getLabel(java.util.Locale)
orSchemaNode.getDescription(java.util.Locale)
is being invoked.
-
getStaticLabel
UserMessage getStaticLabel()
Returns the label that is statically defined in the data model.
-
getStaticDescription
UserMessage getStaticDescription()
Returns the description that is statically defined in the data model.
-
-