* the name of the package in which the icons resides.
* @return the requested <code>IconProvider</code>.
*/
public IconProvider loadIconsFromPropertiesFile(String fileName, String iconPackageName) {
try {
return new PropertiesBasedIconProvider(fileName, iconPackageName);
} catch (Exception ex) {
handleBundleException(fileName, ex);
return null;
}
}