}
private MenuManager(ActionMap rootActionMap) {
this.rootActionMap = rootActionMap;
if (bundle==null){
try{
DirectoryClassLoader dir=new DirectoryClassLoader();
if (dir.isValid()){
bundle=ResourceBundle.getBundle(MENU_BUNDLE_CONF_DIR,Locale.getDefault(),dir);
}
}catch(Exception e){}
if (bundle==null) bundle = ResourceBundle.getBundle(MENU_BUNDLE,Locale.getDefault(),ClassLoaderUtils.getLocalClassLoader());
}