private String packageName = DEFAULT_PACKAGE;
public RestyFormBuilderModel(String contextPath) {
this.contextPath = contextPath;
//registered to save the menu items
bus.addHandler(MenuItemAddedEvent.TYPE, new MenuItemAddedHandler() {
@Override
public void onEvent(MenuItemAddedEvent event) {
FBMenuItem item = event.getMenuItem();
saveMenuItem(event.getGroupName(), item);
if (item instanceof CustomMenuItem) {