Interface Localiser
-
- All Known Implementing Classes:
AbstractTransferableGUIContext
,LocalisationResolver
,TransferredURLContext
public interface Localiser
This interface provides access to aLocale
that is used for localisation. Usually this will be added to the proxy transparently wrapping the localisation. It may also be implemented by mdoel classes that somehow need a localisation but do not have the corresponding rich agent to determine theLocale
. For instance the transferred URL context which has to remove the localisation proxy before serialisation and needs to reapply it after deserialisation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Locale
getLocale()
Gets theLocale
that should be used or that is used for localisation of this object or a related object.
-
-
-
Method Detail
-
getLocale
Locale getLocale()
Gets theLocale
that should be used or that is used for localisation of this object or a related object.- Returns:
- The
Locale
that should be used or that is used for localisation of this object or a related object.
-
-