Searched refs:JDialog (Results 1 - 25 of 46) sorted by relevance

12

/openjdk7/jdk/test/javax/swing/JDialog/6639507/
H A Dbug6639507.java26 @summary Title of javax.swing.JDialog is null while spec says it's empty
43 assertEmptyTitle(new JDialog((Frame) null), "new JDialog((Frame) null)");
44 assertEmptyTitle(new JDialog((Frame) null, true), "new JDialog((Frame) null, true)");
45 assertEmptyTitle(new JDialog((Dialog) null), "new JDialog((Dialog) null)");
46 assertEmptyTitle(new JDialog((Dialog) null, true), "new JDialog((Dialog) null, true)");
47 assertEmptyTitle(new JDialog((Windo
[all...]
/openjdk7/jdk/test/javax/swing/JOptionPane/6464022/
H A Dbug6464022.java43 final List<WeakReference<JDialog>> references = new ArrayList<WeakReference<JDialog>>();
50 JDialog dialog = pane.createDialog(null, "Test " + i);
52 references.add(new WeakReference<JDialog>(dialog));
67 for (WeakReference<JDialog> ref : references) {
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJDialog.java43 * The {@code JDialog} component contains a {@code JRootPane}
46 * {@code JDialog}.
60 * of a {@code JDialog}.
66 * In a multi-screen environment, you can create a {@code JDialog}
97 public class JDialog extends Dialog implements WindowConstants, class in inherits:Dialog,WindowConstants,Accessible,RootPaneContainer,TransferHandler.HasGetTransferHandler
107 new StringBuffer("JDialog.defaultLookAndFeelDecorated");
120 * false, but is set to true when the {@code JDialog} is constructed.
142 * {@code JDialog}. To create an unowned {@code JDialog}
143 * you must use either the {@code JDialog(Windo
152 public JDialog() { method in class:JDialog
177 public JDialog(Frame owner) { method in class:JDialog
204 public JDialog(Frame owner, boolean modal) { method in class:JDialog
231 public JDialog(Frame owner, String title) { method in class:JDialog
270 public JDialog(Frame owner, String title, boolean modal) { method in class:JDialog
320 public JDialog(Frame owner, String title, boolean modal, method in class:JDialog
346 public JDialog(Dialog owner) { method in class:JDialog
372 public JDialog(Dialog owner, boolean modal) { method in class:JDialog
392 public JDialog(Dialog owner, String title) { method in class:JDialog
420 public JDialog(Dialog owner, String title, boolean modal) { method in class:JDialog
458 public JDialog(Dialog owner, String title, boolean modal, method in class:JDialog
487 public JDialog(Window owner) { method in class:JDialog
523 public JDialog(Window owner, ModalityType modalityType) { method in class:JDialog
552 public JDialog(Window owner, String title) { method in class:JDialog
590 public JDialog(Window owner, String title, Dialog.ModalityType modalityType) { method in class:JDialog
635 public JDialog(Window owner, String title, Dialog.ModalityType modalityType, method in class:JDialog
[all...]
H A DJOptionPane.java271 * JDialog dialog = pane.createDialog(<i>parentComponent, title</i>);
580 JDialog dialog = pane.createDialog(parentComponent, title, style);
867 JDialog dialog = pane.createDialog(parentComponent, title, style);
891 * Creates and returns a new <code>JDialog</code> wrapping
895 * The returned <code>JDialog</code> will not be resizable by the
897 * the <code>JDialog</code> instance to change this property.
898 * The returned <code>JDialog</code> will be set up such that
910 * @return a new <code>JDialog</code> containing this instance
916 public JDialog createDialog(Component parentComponent, String title)
923 * Creates and returns a new parentless <code>JDialog</cod
[all...]
H A DProgressMonitor.java84 private JDialog dialog;
119 * @see JDialog
178 public JDialog createDialog(Component parentComponent, String title) {
179 final JDialog dialog;
183 dialog = new JDialog((Frame)window, title, false);
185 dialog = new JDialog((Dialog)window, title, false);
506 * JDialog
H A DJColorChooser.java141 JDialog dialog = createDialog(component, title, true, pane, ok, null);
172 public static JDialog createDialog(Component c, String title, boolean modal,
608 class ColorChooserDialog extends JDialog {
707 if (JDialog.isDefaultLookAndFeelDecorated()) {
/openjdk7/jdk/src/share/demo/jfc/Metalworks/
H A DMetalworks.java43 import javax.swing.JDialog;
60 JDialog.setDefaultLookAndFeelDecorated(true);
/openjdk7/jdk/test/javax/swing/JColorChooser/
H A DTest4177735.java33 import javax.swing.JDialog;
45 JDialog dialog = show(chooser);
58 static JDialog show(JColorChooser chooser) {
59 JDialog dialog = JColorChooser.createDialog(null, null, false, chooser, null, null);
H A DTest4234761.java35 import javax.swing.JDialog;
43 JDialog dialog = Test4177735.show(chooser);
H A DTest4759934.java40 import javax.swing.JDialog;
56 JDialog dialog = new JDialog(this.frame, "Dialog"); // NON-NLS: dialog title
H A DTest6559154.java36 import javax.swing.JDialog;
42 private JDialog dialog;
58 this.dialog = new JDialog();
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/ui/
H A DOkCancelDialog.java32 import javax.swing.JDialog;
38 public class OkCancelDialog extends JDialog
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DThreadDialog.java52 JDialog dialog = pane.createDialog(parentComponent, title);
/openjdk7/jdk/test/javax/swing/SwingUtilities/4917669/
H A Dbug4917669.java28 * @summary 1.4 REGRESSION: MenuItem accelerator doesn't work if parent menu is in JDialog
78 JDialog dialog = new JDialog(mainFrame, "Test Dialog", false);
/openjdk7/jdk/test/java/awt/Focus/TypeAhead/
H A DTestFocusFreeze.java43 import javax.swing.JDialog;
49 private static JDialog dialog;
76 dialog = new JDialog(frame, "Dialog", true);
/openjdk7/jdk/test/javax/swing/JOptionPane/7138665/
H A Dbug7138665.java45 JDialog dialog = pane.createDialog(null, "My Dialog");
/openjdk7/jdk/test/java/awt/KeyboardFocusmanager/DefaultPolicyChange/
H A DDefaultPolicyChange_Swing.java32 JDialog jd = new JDialog(jf);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DLaunchTool.java132 final JDialog dialog = new JDialog();
177 final JDialog dialog = new JDialog();
247 private JPanel okCancel(final JDialog dialog, ActionListener okListener) {
H A DJDBMenuBar.java142 JDialog dialog = new JDialog(frame, "Specify Breakpoint");
/openjdk7/langtools/make/tools/SelectTool/
H A DSelectToolTask.java49 import javax.swing.JDialog;
209 JDialog d = (JDialog) SwingUtilities.getAncestorOfClass(JDialog.class, p);
/openjdk7/jdk/test/java/awt/KeyboardFocusmanager/TypeAhead/MenuItemActivatedTest/
H A DMenuItemActivatedTest.java43 JDialog dialog = new JDialog((Window)null, "Test Dialog", Dialog.ModalityType.DOCUMENT_MODAL);
/openjdk7/jdk/test/java/awt/Modal/ModalDialogMultiscreenTest/
H A DModalDialogMultiscreenTest.java49 JDialog dialog;
50 public ButtonActionListener(JFrame frame, JDialog dialog) {
59 public static class TestDialog extends JDialog {
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCTrayIcon.java43 private JDialog messageDialog;
280 private JDialog createMessageDialog(String caption, String text,
282 JDialog dialog;
325 dialog = new JDialog((Dialog) null);
332 dialog.setDefaultCloseOperation(JDialog.DO_NOTHING_ON_CLOSE);
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest4634390.java41 JDialog.class,
/openjdk7/jdk/make/javax/swing/beaninfo/
H A DFILES.gmk42 JDialog \
92 ..\..\..\..\..\src\share\classes\javax\swing\JDialog.java \

Completed in 77 milliseconds

12