Interface LabelService
-
- All Known Implementing Classes:
DefaultLabelService
public interface LabelServiceService for extracting label, description and icon path to display for given TypeObject
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.StringgetObjectDescription(TypedObject object)Deprecated.since 6.3, usegetObjectDescriptionForTypedObject(TypedObject)java.lang.StringgetObjectDescriptionForTypedObject(TypedObject object)Gets the object description for typed object.java.lang.StringgetObjectIconPath(TypedObject object)Deprecated.since 6.3, usegetObjectIconPathForTypedObject(TypedObject)java.lang.StringgetObjectIconPathForTypedObject(TypedObject object)Gets the object icon path for typed object.java.lang.StringgetObjectTextLabel(TypedObject object)Deprecated.since 6.3, usegetObjectTextLabelForTypedObject(TypedObject)java.lang.StringgetObjectTextLabelForTypedObject(TypedObject object)Gets the object text label for typed object.
-
-
-
Method Detail
-
getObjectTextLabel
@Deprecated java.lang.String getObjectTextLabel(TypedObject object)
Deprecated.since 6.3, usegetObjectTextLabelForTypedObject(TypedObject)- Parameters:
object-- Returns:
- label string to display for a given TypeObject
-
getObjectTextLabelForTypedObject
java.lang.String getObjectTextLabelForTypedObject(TypedObject object)
Gets the object text label for typed object.- Parameters:
object- the object- Returns:
- the object text label for typed object
-
getObjectDescription
@Deprecated java.lang.String getObjectDescription(TypedObject object)
Deprecated.since 6.3, usegetObjectDescriptionForTypedObject(TypedObject)- Parameters:
object-- Returns:
- description to display for a given TypeObject
-
getObjectDescriptionForTypedObject
java.lang.String getObjectDescriptionForTypedObject(TypedObject object)
Gets the object description for typed object.- Parameters:
object- the object- Returns:
- the object description for typed object
-
getObjectIconPath
@Deprecated java.lang.String getObjectIconPath(TypedObject object)
Deprecated.since 6.3, usegetObjectIconPathForTypedObject(TypedObject)- Parameters:
object-- Returns:
- path to picture to display for a given TypeObject, can return null when picture is not defined
-
getObjectIconPathForTypedObject
java.lang.String getObjectIconPathForTypedObject(TypedObject object)
Gets the object icon path for typed object.- Parameters:
object- the object- Returns:
- the object icon path for typed object
-
-