// This => /this/additions
// Objects => /objects/additions
// Help => /help/additions
// add menu items to help -- this will show up as a help topic for the example plugin
new MenuItemInfo(
"/help/additions", // NOI18N
"ABOUT_EXAMPLE_ACTION", //NO18N
MenuItemType.NORMAL,
AboutExampleAction.class),
// add menu item to the objects menu -- this will demonstrate programmatic creation for ExampleComponents
new MenuItemInfo(
"/objects/additions", // NOI18N
"API_CREATION_ACTION", //NO18N
MenuItemType.NORMAL,
APICreationAction.class),
// add menu item to the objects menu -- this will be inline as a radio button group under the objects menu
new MenuItemInfo(
"/objects/additions", //NOI18N
"CHANGE_COLOR_ACTION", //NOI18N
MenuItemType.RADIO_GROUP,
AddOrRemoveNodeBorderAction.class),
new MenuItemInfo(
"/objects/additions", //NOI18N
"SUBMENU", //NOI18N
SubmenuMenu.class),
new MenuItemInfo(
"objects/submenu.ext", //NOI18N
"OBJECTS_SUBMENU_BEEP", //NOI18N
MenuItemType.NORMAL,
BeepAction.class));
}