Lines Matching defs:owner

67  * on a different screen device than its owner.  See {@link java.awt.Frame} for
135 * {@code Frame} owner. A shared, hidden frame will be
136 * set as the owner of the dialog.
158 * as its owner and an empty title. If {@code owner}
160 * owner of the dialog.
171 * @param owner the {@code Frame} from which the dialog is displayed
177 public JDialog(Frame owner) {
178 this(owner, false);
183 * {@code Frame} as its owner. If {@code owner} is {@code null},
184 * a shared, hidden frame will be set as the owner of the dialog.
195 * @param owner the {@code Frame} from which the dialog is displayed
204 public JDialog(Frame owner, boolean modal) {
205 this(owner, "", modal);
210 * with the specified owner frame. If {@code owner}
212 * owner of the dialog.
223 * @param owner the {@code Frame} from which the dialog is displayed
231 public JDialog(Frame owner, String title) {
232 this(owner, title, false);
236 * Creates a dialog with the specified title, owner {@code Frame}
237 * and modality. If {@code owner} is {@code null},
238 * a shared, hidden frame will be set as the owner of this dialog.
253 * @param owner the {@code Frame} from which the dialog is displayed
270 public JDialog(Frame owner, String title, boolean modal) {
271 super(owner == null? SwingUtilities.getSharedOwnerFrame() : owner,
273 if (owner == null) {
283 * owner {@code Frame}, modality and {@code GraphicsConfiguration}.
284 * If {@code owner} is {@code null},
285 * a shared, hidden frame will be set as the owner of this dialog.
300 * @param owner the {@code Frame} from which the dialog is displayed
320 public JDialog(Frame owner, String title, boolean modal,
322 super(owner == null? SwingUtilities.getSharedOwnerFrame() : owner,
324 if (owner == null) {
334 * as its owner and an empty title.
339 * @param owner the owner {@code Dialog} from which the dialog is displayed
340 * or {@code null} if this dialog has no owner
346 public JDialog(Dialog owner) {
347 this(owner, false);
352 * {@code Dialog} as its owner.
357 * @param owner the owner {@code Dialog} from which the dialog is displayed
358 * or {@code null} if this dialog has no owner
372 public JDialog(Dialog owner, boolean modal) {
373 this(owner, "", modal);
378 * with the specified owner dialog.
383 * @param owner the owner {@code Dialog} from which the dialog is displayed
384 * or {@code null} if this dialog has no owner
392 public JDialog(Dialog owner, String title) {
393 this(owner, title, false);
398 * and the specified owner {@code Dialog}.
403 * @param owner the owner {@code Dialog} from which the dialog is displayed
404 * or {@code null} if this dialog has no owner
420 public JDialog(Dialog owner, String title, boolean modal) {
421 super(owner, title, modal);
426 * Creates a dialog with the specified title, owner {@code Dialog},
437 * @param owner the owner {@code Dialog} from which the dialog is displayed
438 * or {@code null} if this dialog has no owner
458 public JDialog(Dialog owner, String title, boolean modal,
460 super(owner, title, modal, gc);
466 * as its owner and an empty title.
471 * @param owner the {@code Window} from which the dialog is displayed or
472 * {@code null} if this dialog has no owner
475 * if the {@code owner} is not an instance of {@link java.awt.Dialog Dialog}
478 * if the {@code owner}'s {@code GraphicsConfiguration} is not from a screen device
487 public JDialog(Window owner) {
488 this(owner, Dialog.ModalityType.MODELESS);
493 * {@code Window} as its owner.
498 * @param owner the {@code Window} from which the dialog is displayed or
499 * {@code null} if this dialog has no owner
505 * if the {@code owner} is not an instance of {@link java.awt.Dialog Dialog}
508 * if the {@code owner}'s {@code GraphicsConfiguration} is not from a screen device
523 public JDialog(Window owner, ModalityType modalityType) {
524 this(owner, "", modalityType);
528 * Creates a modeless dialog with the specified title and owner
534 * @param owner the {@code Window} from which the dialog is displayed or
535 * {@code null} if this dialog has no owner
540 * if the {@code owner} is not an instance of {@link java.awt.Dialog Dialog}
543 * if the {@code owner}'s {@code GraphicsConfiguration} is not from a screen device
552 public JDialog(Window owner, String title) {
553 this(owner, title, Dialog.ModalityType.MODELESS);
557 * Creates a dialog with the specified title, owner {@code Window} and
563 * @param owner the {@code Window} from which the dialog is displayed or
564 * {@code null} if this dialog has no owner
572 * if the {@code owner} is not an instance of {@link java.awt.Dialog Dialog}
575 * if the {@code owner}'s {@code GraphicsConfiguration} is not from a screen device
590 public JDialog(Window owner, String title, Dialog.ModalityType modalityType) {
591 super(owner, title, modalityType);
596 * Creates a dialog with the specified title, owner {@code Window},
606 * @param owner the {@code Window} from which the dialog is displayed or
607 * {@code null} if this dialog has no owner
617 * if the {@code owner} is not an instance of {@link java.awt.Dialog Dialog}
620 * if the {@code owner}'s {@code GraphicsConfiguration} is not from a screen device
635 public JDialog(Window owner, String title, Dialog.ModalityType modalityType,
637 super(owner, title, modalityType, gc);