Interface | Description |
---|---|
Localizable |
An object that is able to localize itself without the
need of an external
Localizer . |
Localizer |
A simple object to handle localization for other objects.
|
RegisteringLocalizer |
A more complex version of the simple
Localizer
with the ability to store localization related information
independent from the objects to be localized. |
ResourceConstants | |
ResourceLoader |
A
ResourceLoader is responsible for fetching
arbitrary resources (normally during the process of localization)
in a transparent way. |
Class | Description |
---|---|
DefaultResourceLoader |
A
ResourceLoader that uses the ClassLoader
of a certain Class to load resources. |
Localizers |
Collection of common
Localizer instances used for
various objects. |
Localizers.ActionLocalizer |
A
Localizer that localizes objects of type
Action . |
Localizers.ButtonLocalizer |
A
Localizer that localizes objects of type
AbstractButton using the AbstractButton.setText(String)
and JComponent.setToolTipText(String) methods. |
Localizers.DialogLocalizer |
A
RegisteringLocalizer that internally maps
Dialog objects to String keys that are used
to fetch localized String objects when localizing
a certain Dialog via Dialog.setTitle(String) . |
Localizers.DomainAwareLocalizer | |
Localizers.EmptyLocalizer |
A
Localizer that does nothing. |
Localizers.EmptyRegisteringLocalizer |
A
Localizer that does nothing. |
Localizers.FrameLocalizer |
A
RegisteringLocalizer that internally maps
Frame objects to String keys that are used
to fetch localized String objects when localizing
a certain Frame via Frame.setTitle(String) . |
Localizers.GenericLocalizer |
Special implementation of the
RegisteringLocalizer interface
that makes use of Localizers.LocalizationAccessDescriptor instances to
access registered objects in terms of localization. |
Localizers.LabelLocalizer |
A
Localizer that localizes objects of type
JLabel using the JLabel.setText(String)
and JComponent.setToolTipText(String) methods. |
Localizers.LocalizationAccessDescriptor |
Helper class to store access information for a certain
object in terms of localization.
|
Localizers.PopupLocalizer |
A
Localizer that localizes objects of type
JPopupMenu using the JPopupMenu.setLabel(String)
and JComponent.setToolTipText(String) methods. |
Localizers.TextComponentLocalizer |
A
Localizer that localizes objects of type
JTextComponent using the JTextComponent#setLabel(String)
and JComponent.setToolTipText(String) methods. |
ManagedResource | |
ResourceDomain |
Provides a kind of 'private' domain of resources that will not be
accessible in a global manner via the shared
ResourceManager
instance. |
ResourceManager | |
UTF8Control |