private boolean canGoNext(WizardPage currentPage) {
return currentPage.canContinue() && wizard.hasNextPage(currentPage);
}
public void handleContextMenuRequest(Component source, int x, int y) {
KongaPopupMenu pm = new KongaPopupMenu();
Action[] actions = { goNext, goBack, save, null, cancel };
pm.addActions(actions);
pm.show(source, x, y);
}