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

/openjdk7/hotspot/agent/src/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);
/openjdk7/hotspot/agent/src/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);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DAboutDialog.java110 JPanel bottomPanel = new TPanel(0, 0);
115 cp.add(bottomPanel, SOUTH);
121 bottomPanel.add(buttonPanel, NORTH);
124 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);
342 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);
/openjdk7/jdk/src/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...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifFileChooserUI.java77 private JPanel bottomPanel; field in class:MotifFileChooserUI
430 bottomPanel = getBottomPanel();
431 bottomPanel.add(new JSeparator(), BorderLayout.NORTH);
496 bottomPanel.add(buttonPanel, BorderLayout.SOUTH);
497 bottomPanel.setInheritsPopupMenu(true);
499 fc.add(bottomPanel, BorderLayout.SOUTH);
504 if (bottomPanel == null) {
505 bottomPanel = new JPanel(new BorderLayout(0, 4));
507 return bottomPanel;
512 getFileChooser().add(bottomPanel,BorderLayou
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalFileChooserUI.java77 private JPanel bottomPanel; field in class:MetalFileChooserUI
158 bottomPanel = null;
369 JPanel bottomPanel = getBottomPanel();
370 bottomPanel.setLayout(new BoxLayout(bottomPanel, BoxLayout.Y_AXIS));
371 fc.add(bottomPanel, BorderLayout.SOUTH);
376 bottomPanel.add(fileNamePanel);
377 bottomPanel.add(Box.createRigidArea(vstrut5));
409 bottomPanel.add(filesOfTypePanel);
453 if(bottomPanel
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsFileChooserUI.java77 private JPanel bottomPanel; field in class:WindowsFileChooserUI
520 if(bottomPanel == null) {
521 bottomPanel = new JPanel();
523 return bottomPanel;

Completed in 1607 milliseconds