Package org.eclipse.rap.rwt
Class RWT.NLS
java.lang.Object
org.eclipse.rap.rwt.RWT.NLS
- Enclosing class:
- RWT
This utility class helps to provide a similar approach for compile safe
 native language support than NLS does.
 We can not use the original approach though, due to the nature of
 server side environments, that have to deal with different locales
 per user session or even requests.
Usage:
  public class FooMessages {
    private static final String BUNDLE_NAME = "foo.bar.messages";
    public String MyMessage;
    public static FooMessages get() {
      return ( FootMessages )RWT.NLS.getISO8859_1Encoded( BUNDLE_NAME, FooMessages.class );
    }
  }
 
 BUNDLE_NAME contains the name of a properties file (without file extension)
 that follows the conventions of standard ResourceBundle property
 files. For each field (in the example 'MyMessage') there has to be a
 key entry in the localization property file. Use the
 FooMessages like this in the application code:
 Label label = ...; label.setText( FooMessages.get().MyMessage );
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic <T> TReturns a NLS object for the given resource bundle and type.static <T> TgetISO8859_1Encoded(String bundleName, Class<T> clazz) Deprecated.static <T> TgetUTF8Encoded(String bundleName, Class<T> clazz) Deprecated.useget(String bundleName, Classinstead.clazz) 
- 
Constructor Details- 
NLSpublic NLS()
 
- 
- 
Method Details- 
getISO8859_1EncodedDeprecated.useget(String bundleName, Classinstead.clazz) Returns a NLS object for the given resource bundle and type. See class description for usage information. The resource bundles read by this method have to be ISO 8859-1 encoded. This is according to thePropertiesfile specification.- Parameters:
- bundleName- the resource bundle to load.
- clazz- the class of the NLS object to load.
 
- 
getUTF8EncodedDeprecated.useget(String bundleName, Classinstead.clazz) Returns a NLS object for the given resource bundle and type. See class description for usage information. The resource bundles read by this method have to be UTF-8 encoded. Note that this is not according to thePropertiesfile specification and meant for a more convenient use.- Parameters:
- bundleName- the resource bundle to load.
- clazz- the class of the NLS object to load.
 
- 
getReturns a NLS object for the given resource bundle and type. See class description for usage information.- Parameters:
- bundleName- the resource bundle to load.
- clazz- the class of the NLS object to load.
- Since:
- 3.23
 
 
- 
get(String bundleName, Class clazz) instead.