Lines Matching refs:title

36  * ComponentChooser instance or a search criteria based on the Dialog title.
97 * Searches for a dialog by title. The search proceeds among the currently
98 * showing dialogs for the first with a suitable title.
100 * @param title Dialog title or subtitle.
102 * match occurs when the {@code title} argument is a substring of a
103 * dialog title. If {@code false} and the search is case sensitive,
104 * then the {@code title} argument and the dialog title must be the
106 * match occurs when the {@code title} argument is a substring of the
107 * dialog title after changing both to upper case. If {@code false} and
109 * {@code title} argument is a substring of the dialog title after
114 * suitable title. If no such dialog can be found, a {@code null}
117 public static Dialog getDialog(String title, boolean ce, boolean cc) {
118 return (Dialog) WindowWaiter.getWindow(new DialogByTitleChooser(title, ce, cc));
122 * Searches for a dialog by title. The search is for the
124 * possess a suitable title.
126 * @param title Dialog title or subtitle.
128 * match occurs when the {@code title} argument is a substring of a
129 * dialog title. If {@code false} and the search is case sensitive,
130 * then the {@code title} argument and the dialog title must be the
132 * match occurs when the {@code title} argument is a substring of the
133 * dialog title after changing both to upper case. If {@code false} and
135 * {@code title} argument is a substring of the dialog title after
141 * and that has a suitable title. If there are fewer than
144 public static Dialog getDialog(String title, boolean ce, boolean cc, int index) {
145 return getDialog(new DialogByTitleChooser(title, ce, cc), index);
186 * Searches for a dialog by title. The search proceeds among the currently
188 * {@code owner} for the first with a suitable title.
191 * @param title Dialog title or subtitle.
193 * match occurs when the {@code title} argument is a substring of a
194 * dialog title. If {@code false} and the search is case sensitive,
195 * then the {@code title} argument and the dialog title must be the
197 * match occurs when the {@code title} argument is a substring of the
198 * dialog title after changing both to upper case. If {@code false} and
200 * {@code title} argument is a substring of the dialog title after
205 * window ownership, and a suitable title. If no such dialog can be found, a
208 public static Dialog getDialog(Window owner, String title, boolean ce, boolean cc) {
209 return (Dialog) WindowWaiter.getWindow(owner, new DialogByTitleChooser(title, ce, cc));
213 * Searches for a dialog by title. The search is for the
216 * have a suitable title.
218 * @param owner ?title? Dialog title or subtitle.
219 * @param title ?ce? If {@code true} and the search is case sensitive,
220 * then a match occurs when the {@code title} argument is a substring
221 * of a dialog title. If {@code false} and the search is case
222 * sensitive, then the {@code title} argument and the dialog title must
224 * then a match occurs when the {@code title} argument is a substring
225 * of the dialog title after changing both to upper case. If
227 * occurs when the {@code title} argument is a substring of the dialog
228 * title after changing both to upper case.
232 * displayed dialogs with the proper window ownership and a suitable title.
236 * showing, has the proper window ownership, and a suitable title. If there
240 public static Dialog getDialog(Window owner, String title, boolean ce, boolean cc, int index) {
241 return getDialog(owner, new DialogByTitleChooser(title, ce, cc), index);
354 * to show with a suitable title.
356 * @param title Dialog title or subtitle.
358 * sensitive, then a match occurs when the {@code title} argument is a
359 * substring of a dialog title. If {@code false} and the search is case
360 * sensitive, then the {@code title} argument and the dialog title must
362 * then a match occurs when the {@code title} argument is a substring
363 * of the dialog title after changing both to upper case. If
365 * occurs when the {@code title} argument is a substring of the dialog
366 * title after changing both to upper case.
370 * displayed dialogs with the proper window ownership and a suitable title.
373 * that has a suitable title. If no such dialog can be found within the time
379 public Dialog waitDialog(String title, boolean compareExactly, boolean compareCaseSensitive, int index)
381 return waitDialog(new DialogByTitleChooser(title, compareExactly, compareCaseSensitive), index);
386 * suitable title.
388 * @param title Dialog title or subtitle.
390 * sensitive, then a match occurs when the {@code title} argument is a
391 * substring of a dialog title. If {@code false} and the search is case
392 * sensitive, then the {@code title} argument and the dialog title must
394 * then a match occurs when the {@code title} argument is a substring
395 * of the dialog title after changing both to upper case. If
397 * occurs when the {@code title} argument is a substring of the dialog
398 * title after changing both to upper case.
402 * title. If no such dialog can be found within the time period allotted, a
408 public Dialog waitDialog(String title, boolean compareExactly, boolean compareCaseSensitive)
410 return waitDialog(title, compareExactly, compareCaseSensitive, 0);
423 * displayed dialogs with the proper window ownership and a suitable title.
462 * to show with the proper owner and a suitable title.
465 * @param title Dialog title or subtitle.
467 * sensitive, then a match occurs when the {@code title} argument is a
468 * substring of a dialog title. If {@code false} and the search is case
469 * sensitive, then the {@code title} argument and the dialog title must
471 * then a match occurs when the {@code title} argument is a substring
472 * of the dialog title after changing both to upper case. If
474 * occurs when the {@code title} argument is a substring of the dialog
475 * title after changing both to upper case.
480 * has both the proper owner window and a suitable title. If no such dialog
487 public Dialog waitDialog(Window owner, String title, boolean compareExactly, boolean compareCaseSensitive, int index)
489 return waitDialog(owner, new DialogByTitleChooser(title, compareExactly, compareCaseSensitive), index);
494 * proper owner and a suitable title.
498 * @param title Dialog title or subtitle.
500 * sensitive, then a match occurs when the {@code title} argument is a
501 * substring of a dialog title. If {@code false} and the search is case
502 * sensitive, then the {@code title} argument and the dialog title must
504 * then a match occurs when the {@code title} argument is a substring
505 * of the dialog title after changing both to upper case. If
507 * occurs when the {@code title} argument is a substring of the dialog
508 * title after changing both to upper case.
512 * proper owner and a suitable title. If no such dialog can be found within
517 public Dialog waitDialog(Window owner, String title, boolean compareExactly, boolean compareCaseSensitive)
519 return waitDialog(owner, title, compareExactly, compareCaseSensitive, 0);
630 String title;
636 title = t;
647 String contextToComp = title;
664 return title;
669 return "DialogByTitleChooser{" + "title=" + title + ", compareExactly=" + compareExactly + ", compareCaseSensitive=" + compareCaseSensitive + '}';