Lines Matching refs:panel

64  * This is the panel that contains the Data Options: the suffix dn, whether
88 * Constructor of the panel.
89 * @param application Application represented by this panel
90 * the fields of the panel.
171 JPanel panel = new JPanel(new GridBagLayout());
172 panel.setOpaque(false);
181 panel.add(getLabel(FieldName.DIRECTORY_BASE_DN), gbc);
201 panel.add(auxPanel, gbc);
208 panel.add(Box.createHorizontalGlue(), gbc);
213 panel.add(UIFactory.makeJLabel(UIFactory.IconType.NO_ICON,
226 panel.add(getLabel(FieldName.DATA_OPTIONS), gbc);
233 panel.add(createRadioButtonPanel(), gbc);
235 addVerticalGlue(panel);
237 return panel;
241 * Returns and creates the radio buttons panel.
242 * @return the radio buttons panel.
246 JPanel panel = new JPanel(new GridBagLayout());
248 panel.setOpaque(false);
254 panel.add(getRadioButton(NewSuffixOptions.Type.CREATE_BASE_ENTRY), gbc);
256 panel.add(getRadioButton(NewSuffixOptions.Type.LEAVE_DATABASE_EMPTY), gbc);
257 panel.add(getRadioButton(NewSuffixOptions.Type.IMPORT_FROM_LDIF_FILE), gbc);
265 panel.add(auxPanel, gbc);
268 panel.add(getRadioButton(
277 panel.add(auxPanel, gbc);
279 return panel;
283 * Returns the number entries panel.
284 * @return the number entries panel.
288 JPanel panel;
292 panel = new JPanel(new GridBagLayout());
293 panel.setOpaque(false);
297 panel.add(getLabel(FieldName.NUMBER_ENTRIES), gbc);
302 panel.add(getField(FieldName.NUMBER_ENTRIES), gbc);
307 panel.add(Box.createHorizontalGlue(), gbc);
309 return panel;
313 * Creates a panel with a field and a browse button.
316 * @return the created panel.