Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Eclipse Rich Ajax Platform
Release 1.2

org.eclipse.rwt
Class RWT.NLS


java.lang.Object
  extended by
org.eclipse.rwt.RWT.NLS
Enclosing class:
RWT

public static final class RWT.NLS
extends Object

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 Summary
RWT.NLS ()
           
 
Method Summary
static  Object getISO8859_1Encoded ( String bundleName, Class clazz)
          Returns a NLS object for the given bundle and type.
static  Object getUTF8Encoded ( String bundleName, Class clazz)
          Returns a NLS object for the given bundle and type.
 
Methods inherited from class java.lang. Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RWT.NLS

public RWT.NLS()
Method Detail

getISO8859_1Encoded

public static 
Object getISO8859_1Encoded(
String bundleName,
                                         
Class clazz)
Returns a NLS object for the given 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 the Properties file specification.

Parameters:
bundleName - the bundle to load.
clazz - the class of the NLS object to load.

getUTF8Encoded

public static 
Object getUTF8Encoded(
String bundleName,
                                    
Class clazz)
Returns a NLS object for the given 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 the Properties file specification and meant for a more convenient use.

Parameters:
bundleName - the bundle to load.
clazz - the class of the NLS object to load.

Eclipse Rich Ajax Platform
Release 1.2

Copyright (c) Innoopract Informationssysteme GmbH and others 2002, 2008. All rights reserved.


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire