// Only deal with SimpleMenuItems for now
SimpleContextMenuItem scmi = (SimpleContextMenuItem)menuItem;
ContextMenuActionListener listener = scmi.getActionListener();
if (listener != null) {
listener.actionPerformed(
new ContextMenuItemEvent(menuItem, popupCell));
}
}
}