// Add the item to its module
rci.getDefinedInModule().addRunContextItem(rci);
}
else if (def instanceof I18NConfig){
I18NConfig i18n = (I18NConfig) def;
RunContextItemCollection rcic = contexts.get(i18n.getContextImpl());
if (rcic == null){
rcic = new RunContextItemCollection(i18n.getContextImpl());
contexts.put(i18n.getContextImpl(), rcic);
}
rcic.addItem(i18n);
// Add the item to its module
i18n.getDefinedInModule().addRunContextItem(i18n);
}
else if (def instanceof MenuBar){
MenuBar menu = (MenuBar) def;
menuBars.put(menu.getCamelCaseName(), menu);
menuElements.put(menu.getCamelCaseName(), menu);