com.ibm.portal
Interface Localized
All Superinterfaces:
java.io.Serializable
- public interface Localized
- extends java.io.Serializable
Method Summary
Modifier and Type | Method and Description |
---|---|
|
getDescription(java.util.Locale aLocale)
Returns the description of this object in the given locale.
|
|
getTitle(java.util.Locale aLocale)
Returns the title of this object in the given locale.
|
Method Detail
getTitle
- java.lang.String getTitle(java.util.Locale aLocale)
Returns the title of this object in the given locale.
Parameters:
aLocale
- the locale for which to retrieve the title, must not
be null
. Returns:
the title of this node in the given locale. If a title is not
available in the given locale, this method will return
null
.
It is up to the invoker of the method to implement an appropriate
fallback mechanism. getDescription
- java.lang.String getDescription( java.util.Locale aLocale)
Returns the description of this object in the given locale.
Parameters:
aLocale
- the locale for which to retrieve the description, must not
be null
. Returns:
the description of this node in the given locale. If a title is not
available in the given locale, this method will return
null
.
It is up to the invoker of the method to implement an appropriate
fallback mechanism