@Override
@NotNull
protected PsiElement[] invokeDialog(Project project, PsiDirectory directory) {
ActionRunnableImpl actionRunnable = new ActionRunnableImpl(project, directory, WicketTemplates.WICKET_PANEL_HTML);
CreatePanelDialog dialog = new CreatePanelDialog(project, actionRunnable, getCommandName(), directory);
dialog.show();
return actionRunnable.getCreatedElements();
}