tags:

views:

50

answers:

0

Hi all, I'm trying to introduce internationalization support for my app...I created it as a netbeans java desktop application. Netbeans automatically introduced the following code :

public class ABC extends FrameView{
//constructor
public ABC(Singleframeapplication app)
{
//introduced by netbeans automatically
ResourceMap resourceMap=getResourceMap();
//

}


}

how do i used this resourcemap object to set the locale(eg. FR) for my entire app? PS:i have created ABC_FR.properties in /ABC/resources folder Thanks