if (menuActions.isEmpty()) {
return;
}
KongaPopupMenu pm = new KongaPopupMenu();
pm.addActions(menuActions);
pm.show(e.getComponent(), e.getX(), e.getY());
}
private List<Action> getActionsToIncludeInMenu() {
List<Action> toInclude = Lists.newArrayList();
for (SelectionAction a : actions) {