List of usage examples for org.eclipse.jface.dialogs InputDialog getShell
@Override
public Shell getShell()
From source file:com.mentor.nucleus.bp.test.common.UITestingUtilities.java
License:Open Source License
public static String findInputDialogErrorText(InputDialog dialog) { List<Text> texts = findTextInControl(dialog.getShell()); return texts.get(1).getText(); }
From source file:com.mentor.nucleus.bp.test.common.UITestingUtilities.java
License:Open Source License
public static Text findInputDialogTextField(InputDialog dialog) { List<Text> texts = findTextInControl(dialog.getShell()); return texts.get(0); }