Adds a Panel to the dialog.
(Panel panel)
| 1127 | |
| 1128 | /** Adds a Panel to the dialog. */ |
| 1129 | public void addPanel(Panel panel) { |
| 1130 | addPanel(panel, GridBagConstraints.WEST, addToSameRow ? c.insets : getInsets(5,0,0,0)); |
| 1131 | } |
| 1132 | |
| 1133 | /** Adds a Panel to the dialog with custom contraint and insets. The |
| 1134 | defaults are GridBagConstraints.WEST (left justified) and |