use of com.amalto.workbench.dialogs.XpathSelectDialog in project tmdm-studio-se by Talend.
the class ProcessViewInputDialog method widgetSelected.
public void widgetSelected(SelectionEvent e) {
dlg = new XpathSelectDialog(composite.getShell(), treeParent, Messages.ProcessViewXX_SelectOneEntity, site, false, null);
dlg.setBlockOnOpen(true);
dlg.open();
if (dlg.getReturnCode() == Window.OK) {
text.setText(value + dlg.getEntityName());
dlg.close();
}
}
use of com.amalto.workbench.dialogs.XpathSelectDialog in project tmdm-studio-se by Talend.
the class RenameViewDialog method widgetSelected.
public void widgetSelected(SelectionEvent e) {
XpathSelectDialog dlg = new XpathSelectDialog(getShell(), null, Messages.ViewInputDialog_SelectOneEntity, site, false, null);
dlg.setBlockOnOpen(true);
dlg.open();
if (dlg.getReturnCode() == Window.OK) {
entityText.setText(dlg.getEntityName());
dlg.close();
}
}
use of com.amalto.workbench.dialogs.XpathSelectDialog in project tmdm-studio-se by Talend.
the class ViewInputDialog method widgetSelected.
public void widgetSelected(SelectionEvent e) {
dlg = new XpathSelectDialog(composite.getShell(), treeParent, Messages.ViewInputDialog_SelectOneEntity, site, false, null);
dlg.setBlockOnOpen(true);
dlg.open();
if (dlg.getReturnCode() == Window.OK) {
entityText.setText(value + dlg.getEntityName());
dlg.close();
}
}
Aggregations