In canse you have many large ResourceBundles this would make life so much easier when coding:
example in code: ********************************************** String resourceBundlePath = "myRbPath."; String resourceBundleName = "myRbName"; ResourceBundle myBundle = ResourceBundle.getBundle(resourceBundlePath + resourceBundleName, myLocale); ********************************************************* since I know the base package and name of the resourceBundle, when i type myBundle.getXXXX( --> it would by nice if I could get a dropdown list of all available Bundles in the given package with the given name like: 1)myRbName_en_US 2)myRbName_en_GB 3)myRbName_en 4)myRbName when selecting one I would like to get a dropdown with all available keys (String values) for the selected bundle. That way, when myRbName_language_country is very large i could easily select the key i want from the dropdown in the myBundle.getXXXX( statement. If then, the feaure could also help with letting me know when I have to cast the value of the given key I would never ever use any other ide again :) of course if resourceBundlePath and resourceBundleName are input params in class this could not work. but most of the time (at least in my case) those are hardcoded within the app. what do you think? thanks t.s. _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. _______________________________________________ Eap-features mailing list [EMAIL PROTECTED] http://www.intellij.com/mailman/listinfo/eap-features
