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:
-
Method Summary
Modifier and TypeMethodDescriptionReturns the current locale, nevernull
.Returns the EBX® repository.Returns the node to which this context is attached.Returns the current session ornull
.Returns the description that is statically defined in the data model.Returns the label that is statically defined in the data model.
-
Method Details
-
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.
-