Lines Matching refs:title

200  * <dt>title<dd>The title for the dialog box.
239 * message 'please choose one' and title information:
244 * <dt>Show a warning dialog with the options OK, CANCEL, title 'Warning', and
271 * JDialog dialog = pane.createDialog(<i>parentComponent, title</i>);
503 * <code>parentComponent</code> with the dialog having the title
504 * <code>title</code> and message type <code>messageType</code>.
509 * @param title the <code>String</code> to display in the dialog
510 * title bar
523 Object message, String title, int messageType)
525 return (String)showInputDialog(parentComponent, message, title,
545 * @param title the <code>String</code> to display in the
546 * dialog title bar
566 Object message, String title, int messageType, Icon icon,
580 JDialog dialog = pane.createDialog(parentComponent, title, style);
623 * @param title the title string for the dialog
636 Object message, String title, int messageType)
638 showMessageDialog(parentComponent, message, title, messageType, null);
650 * @param title the title string for the dialog
665 Object message, String title, int messageType, Icon icon)
667 showOptionDialog(parentComponent, message, title, DEFAULT_OPTION,
674 * title, <b>Select an Option</b>.
705 * @param title the title string for the dialog
717 Object message, String title, int optionType)
719 return showConfirmDialog(parentComponent, message, title, optionType,
737 * @param title the title string for the dialog
756 Object message, String title, int optionType, int messageType)
758 return showConfirmDialog(parentComponent, message, title, optionType,
774 * @param title the title string for the dialog
794 Object message, String title, int optionType,
796 return showOptionDialog(parentComponent, message, title, optionType,
822 * @param title the title string for the dialog
855 Object message, String title, int optionType, int messageType,
867 JDialog dialog = pane.createDialog(parentComponent, title, style);
894 * <code>title</code> is the title of the returned dialog.
909 * @param title the title string for the dialog
916 public JDialog createDialog(Component parentComponent, String title)
919 return createDialog(parentComponent, title, style);
924 * with the specified title.
936 * @param title the title string for the dialog
944 public JDialog createDialog(String title) throws HeadlessException {
946 JDialog dialog = new JDialog((Dialog) null, title, true);
951 private JDialog createDialog(Component parentComponent, String title,
959 dialog = new JDialog((Frame)window, title, true);
961 dialog = new JDialog((Dialog)window, title, true);
1063 * @param title the title string for the dialog
1072 Object message, String title,
1074 showInternalMessageDialog(parentComponent, message, title, messageType,null);
1086 * @param title the title string for the dialog
1098 String title, int messageType,
1100 showInternalOptionDialog(parentComponent, message, title, DEFAULT_OPTION,
1106 * and <i>Cancel</i>; with the title, <b>Select an Option</b>.
1136 * @param title the title string for the dialog
1143 Object message, String title,
1145 return showInternalConfirmDialog(parentComponent, message, title, optionType,
1166 * @param title the title string for the dialog
1180 String title, int optionType,
1182 return showInternalConfirmDialog(parentComponent, message, title, optionType,
1203 * @param title the title string for the dialog
1219 String title, int optionType,
1221 return showInternalOptionDialog(parentComponent, message, title, optionType,
1249 * @param title the title string for the dialog
1274 String title, int optionType,
1287 pane.createInternalFrame(parentComponent, title);
1370 * to <code>parentComponent</code> with the dialog having the title
1371 * <code>title</code> and message type <code>messageType</code>.
1375 * @param title the <code>String</code> to display in the
1376 * dialog title bar
1382 Object message, String title, int messageType) {
1383 return (String)showInternalInputDialog(parentComponent, message, title,
1402 * @param title the <code>String</code> to display in the dialog
1403 * title bar
1417 Object message, String title, int messageType, Icon icon,
1431 pane.createInternalFrame(parentComponent, title);
1486 * The internal frame is created with the specified title,
1497 * @param title the <code>String</code> to display in the
1498 * frame's title bar
1505 String title) {
1516 final JInternalFrame iFrame = new JInternalFrame(title, false, true,