Searched defs:bottomPanel (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
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);
/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/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/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 937 milliseconds