Searched refs:bottomPanel (Results 1 - 16 of 16) sorted by relevance

/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/
H A DJavaStackTracePanel.java66 JPanel bottomPanel = new JPanel();
67 bottomPanel.setLayout(new BorderLayout());
68 bottomPanel.add(new JScrollPane(contentEditor), BorderLayout.CENTER);
70 splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, topPanel, bottomPanel);
H A DFindByQueryPanel.java101 JPanel bottomPanel = new JPanel();
102 bottomPanel.setLayout(new BorderLayout());
103 bottomPanel.add(new JScrollPane(objectsEditor), BorderLayout.CENTER);
105 JSplitPane splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, topPanel, bottomPanel);
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DCodeViewerPanel.java73 JPanel bottomPanel = new JPanel();
74 bottomPanel.setLayout(new GridLayout(1, 1));
78 bottomPanel.add(scrollPane);
81 add(bottomPanel, BorderLayout.CENTER);
H A DClassBrowserPanel.java71 JPanel bottomPanel = new JPanel();
72 bottomPanel.setLayout(new BorderLayout());
73 bottomPanel.add(new JScrollPane(contentEditor), BorderLayout.CENTER);
75 splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, topPanel, bottomPanel);
/openjdk9/jdk/src/jdk.jconsole/share/classes/sun/tools/jconsole/
H A DAboutDialog.java108 JPanel bottomPanel = new TPanel(0, 0);
113 cp.add(bottomPanel, SOUTH);
119 bottomPanel.add(buttonPanel, NORTH);
122 bottomPanel.add(statusBar, SOUTH);
H A DCreateMBeanDialog.java78 JPanel bottomPanel = new JPanel(new BorderLayout());
79 cp.add(bottomPanel, BorderLayout.SOUTH);
82 bottomPanel.add(buttonPanel, BorderLayout.NORTH);
91 bottomPanel.add(statusBar, BorderLayout.SOUTH);
H A DClassTab.java75 South: bottomPanel (BorderLayout)
92 JPanel bottomPanel = new JPanel(new BorderLayout());
96 add(bottomPanel, BorderLayout.SOUTH);
130 bottomPanel.setBorder(new CompoundBorder(new TitledBorder(Messages.DETAILS),
137 bottomPanel.add(scrollPane, BorderLayout.SOUTH);
H A DMemoryTab.java53 JPanel bottomPanel; field in class:MemoryTab
88 South: bottomPanel (BorderLayout)
107 bottomPanel = new JPanel(new BorderLayout());
137 bottomPanel.setBorder(new CompoundBorder(new TitledBorder(Messages.DETAILS),
142 bottomPanel.add(new JScrollPane(details), BorderLayout.CENTER);
145 bottomPanel.add(poolChart, BorderLayout.AFTER_LINE_ENDS);
343 add(bottomPanel, BorderLayout.SOUTH);
H A DConnectDialog.java88 JPanel bottomPanel = new JPanel(new BorderLayout());
104 cp.add(bottomPanel, SOUTH);
261 bottomPanel.add(buttonPanel, NORTH);
263 bottomPanel.add(statusBar, SOUTH);
/openjdk9/jdk/src/java.desktop/share/classes/sun/swing/plaf/synth/
H A DSynthFileChooserUIImpl.java78 private JPanel bottomPanel; field in class:SynthFileChooserUIImpl
349 bottomPanel = new JPanel();
350 bottomPanel.setLayout(new BoxLayout(bottomPanel, BoxLayout.Y_AXIS));
351 fc.add(bottomPanel, BorderLayout.SOUTH);
356 bottomPanel.add(fileNamePanel);
357 bottomPanel.add(Box.createRigidArea(new Dimension(1, 5)));
389 bottomPanel.add(filesOfTypePanel);
622 if (bottomPanel != null) {
623 bottomPanel
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifFileChooserUI.java77 private JPanel bottomPanel; field in class:MotifFileChooserUI
438 bottomPanel = getBottomPanel();
439 bottomPanel.add(new JSeparator(), BorderLayout.NORTH);
509 bottomPanel.add(buttonPanel, BorderLayout.SOUTH);
510 bottomPanel.setInheritsPopupMenu(true);
512 fc.add(bottomPanel, BorderLayout.SOUTH);
517 if (bottomPanel == null) {
518 bottomPanel = new JPanel(new BorderLayout(0, 4));
520 return bottomPanel;
525 getFileChooser().add(bottomPanel,BorderLayou
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/plaf/metal/
H A DMetalFileChooserUI.java77 private JPanel bottomPanel; field in class:MetalFileChooserUI
164 bottomPanel = null;
377 JPanel bottomPanel = getBottomPanel();
378 bottomPanel.setLayout(new BoxLayout(bottomPanel, BoxLayout.Y_AXIS));
379 fc.add(bottomPanel, BorderLayout.SOUTH);
384 bottomPanel.add(fileNamePanel);
385 bottomPanel.add(Box.createRigidArea(vstrut5));
419 bottomPanel.add(filesOfTypePanel);
473 if(bottomPanel
[all...]
/openjdk9/jdk/test/java/awt/Modal/helpers/
H A DTestFrame.java111 Panel bottomPanel = new Panel();
112 bottomPanel.setFocusable(false);
113 this.add(bottomPanel);
H A DTestDialog.java117 Panel bottomPanel = new Panel();
118 bottomPanel.setFocusable(false);
119 this.add(bottomPanel);
H A DTestWindow.java114 Panel bottomPanel = new Panel();
115 bottomPanel.setFocusable(false);
116 this.add(bottomPanel);
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsFileChooserUI.java77 private JPanel bottomPanel; field in class:WindowsFileChooserUI
528 if(bottomPanel == null) {
529 bottomPanel = new JPanel();
531 return bottomPanel;

Completed in 136 milliseconds