Searched refs:centerPanel (Results 1 - 7 of 7) sorted by relevance

/openjdk9/jdk/src/jdk.jconsole/share/classes/sun/tools/jconsole/
H A DCreateMBeanDialog.java65 JPanel centerPanel = new JPanel(new VariableGridLayout(0,
71 cp.add(centerPanel, BorderLayout.CENTER);
75 centerPanel.add(new LabeledComponent(Resources.format(Messages.MANAGE_HOTSPOT_MBEANS_IN_COLON_),
97 LabeledComponent.layout(centerPanel);
/openjdk9/jdk/test/sanity/client/lib/SwingSet3/src/com/sun/swingset3/demos/list/
H A DListDemo.java111 JPanel centerPanel = new JPanel();
112 centerPanel.setLayout(new BoxLayout(centerPanel, BoxLayout.X_AXIS));
113 centerPanel.add(Box.createRigidArea(HGAP10));
114 add(centerPanel, BorderLayout.CENTER);
120 centerPanel.add(listPanel);
121 centerPanel.add(Box.createRigidArea(HGAP30));
139 centerPanel.add(createControlPanel());
/openjdk9/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DEditorTopComponent.java88 private JPanel centerPanel; field in class:EditorTopComponent
298 centerPanel = new JPanel();
299 this.add(centerPanel, BorderLayout.CENTER);
301 centerPanel.setLayout(cardLayout);
302 centerPanel.add(SCENE_STRING, scene.getComponent());
303 centerPanel.setBackground(Color.WHITE);
306 centerPanel.add(SATELLITE_STRING, satelliteComponent);
366 cardLayout.show(centerPanel, SATELLITE_STRING);
372 cardLayout.show(centerPanel, SCENE_STRING);
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifFileChooserUI.java329 JPanel centerPanel = new JPanel();
330 centerPanel.setLayout(new BoxLayout(centerPanel, BoxLayout.LINE_AXIS));
331 align(centerPanel);
393 centerPanel.add(leftPanel);
394 centerPanel.add(Box.createRigidArea(hstrut10));
395 centerPanel.add(rightPanel);
396 centerPanel.setInheritsPopupMenu(true);
410 centerPanel.add(accessoryPanel);
413 interior.add(centerPanel);
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsFileChooserUI.java60 private JPanel centerPanel; field in class:WindowsFileChooserUI
380 centerPanel = new JPanel(new BorderLayout());
381 centerPanel.add(getAccessoryPanel(), BorderLayout.AFTER_LINE_ENDS);
387 centerPanel.add(filePane, BorderLayout.CENTER);
388 fc.add(centerPanel, BorderLayout.CENTER);
396 centerPanel.add(getBottomPanel(), BorderLayout.SOUTH);
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKFileChooserUI.java581 JPanel centerPanel = new JPanel(new BorderLayout());
582 centerPanel.setName("GTKFileChooser.centerPanel");
633 centerPanel.add(splitPanel, BorderLayout.CENTER);
647 centerPanel.add(accessoryPanel, BorderLayout.AFTER_LINE_ENDS);
649 interior.add(centerPanel);
/openjdk9/jdk/src/java.desktop/macosx/classes/com/apple/laf/
H A DAquaFileChooserUI.java1558 final JPanel centerPanel = new JPanel(new BorderLayout());
1559 fc.add(centerPanel);
1566 centerPanel.add(getAccessoryPanel(), BorderLayout.LINE_START);
1571 centerPanel.add(p, BorderLayout.CENTER);

Completed in 83 milliseconds