Package com.luciad.datamodel
Interface ILcdDataModelDisplayNameProvider
- All Known Implementing Classes:
TLcdDataModelDisplayNameProvider
,TLcdResourceBundleDataModelDisplayNameProvider
public interface ILcdDataModelDisplayNameProvider
Object that provides display names for data models, data types and data properties. Display
names are human readable names that are typically shown in the UI.
- Since:
- 10.0
-
Method Summary
Modifier and TypeMethodDescriptiongetDisplayName
(TLcdDataModel aDataModel) Returns the display name for the given data model.getDisplayName
(TLcdDataProperty aProperty) Returns the display name for the given data property.getDisplayName
(TLcdDataType aType) Returns the display name for the given data type.getDisplayName
(TLcdDataType aType, Object aValue) Returns the display name for the given value, part of the value domain of the given data type.
-
Method Details
-
getDisplayName
Returns the display name for the given data model.- Parameters:
aDataModel
- the data model for which to return a display name- Returns:
- the display name for the given data model
-
getDisplayName
Returns the display name for the given data type.- Parameters:
aType
- the data type for which to return a display name- Returns:
- the display name for the given data type
-
getDisplayName
Returns the display name for the given data property.- Parameters:
aProperty
- the data property for which to return a display name- Returns:
- the display name for the given data property
-
getDisplayName
Returns the display name for the given value, part of the value domain of the given data type.- Parameters:
aType
- the data type the given value belongs to.aValue
- the value for which to return a display name.- Returns:
- the display name for the given value.
-