Lines Matching refs:gbc

174     GridBagConstraints gbc = new GridBagConstraints();
176 gbc.gridwidth = GridBagConstraints.RELATIVE;
177 gbc.weightx = 0.0;
178 gbc.insets.top = 0;
179 gbc.insets.left = 0;
180 gbc.anchor = GridBagConstraints.WEST;
181 panel.add(getLabel(FieldName.DIRECTORY_BASE_DN), gbc);
185 gbc.gridwidth = GridBagConstraints.RELATIVE;
186 gbc.insets = UIFactory.getEmptyInsets();
187 gbc.fill = GridBagConstraints.HORIZONTAL;
188 gbc.weightx = 0.0;
189 auxPanel.add(getField(FieldName.DIRECTORY_BASE_DN), gbc);
191 gbc.gridwidth = GridBagConstraints.REMAINDER;
192 gbc.insets.left = UIFactory.LEFT_INSET_BROWSE;
193 gbc.weightx = 1.0;
194 gbc.fill = GridBagConstraints.HORIZONTAL;
195 auxPanel.add(Box.createHorizontalGlue(), gbc);
197 gbc.weightx = 1.0;
198 gbc.fill = GridBagConstraints.HORIZONTAL;
199 gbc.insets.left = UIFactory.LEFT_INSET_PRIMARY_FIELD;
200 gbc.gridwidth = GridBagConstraints.REMAINDER;
201 panel.add(auxPanel, gbc);
203 gbc.gridwidth = GridBagConstraints.RELATIVE;
204 gbc.weightx = 0.0;
205 gbc.insets.top = 0;
206 gbc.insets.left = 0;
207 gbc.anchor = GridBagConstraints.WEST;
208 panel.add(Box.createHorizontalGlue(), gbc);
210 gbc.insets.top = 3;
211 gbc.insets.left = UIFactory.LEFT_INSET_PRIMARY_FIELD;
212 gbc.gridwidth = GridBagConstraints.REMAINDER;
215 UIFactory.TextStyle.INLINE_HELP), gbc);
221 gbc.gridwidth = GridBagConstraints.RELATIVE;
222 gbc.weightx = 0.0;
223 gbc.insets.top = UIFactory.TOP_INSET_PRIMARY_FIELD + additionalInset;
224 gbc.insets.left = 0;
225 gbc.anchor = GridBagConstraints.NORTHWEST;
226 panel.add(getLabel(FieldName.DATA_OPTIONS), gbc);
228 gbc.weightx = 1.0;
229 gbc.fill = GridBagConstraints.HORIZONTAL;
230 gbc.insets.top = UIFactory.TOP_INSET_PRIMARY_FIELD;
231 gbc.insets.left = UIFactory.LEFT_INSET_PRIMARY_FIELD;
232 gbc.gridwidth = GridBagConstraints.REMAINDER;
233 panel.add(createRadioButtonPanel(), gbc);
247 GridBagConstraints gbc = new GridBagConstraints();
250 gbc.gridwidth = GridBagConstraints.REMAINDER;
251 gbc.insets = UIFactory.getEmptyInsets();
252 gbc.weightx = 1.0;
253 gbc.fill = GridBagConstraints.HORIZONTAL;
254 panel.add(getRadioButton(NewSuffixOptions.Type.CREATE_BASE_ENTRY), gbc);
255 gbc.insets.top = UIFactory.TOP_INSET_RADIOBUTTON;
256 panel.add(getRadioButton(NewSuffixOptions.Type.LEAVE_DATABASE_EMPTY), gbc);
257 panel.add(getRadioButton(NewSuffixOptions.Type.IMPORT_FROM_LDIF_FILE), gbc);
262 gbc.insets = UIFactory.getEmptyInsets();
263 gbc.insets.top = UIFactory.TOP_INSET_RADIO_SUBORDINATE;
264 gbc.insets.left = UIFactory.LEFT_INSET_RADIO_SUBORDINATE;
265 panel.add(auxPanel, gbc);
267 gbc.insets.left = 0;
270 gbc);
274 gbc.insets = UIFactory.getEmptyInsets();
275 gbc.insets.top = UIFactory.TOP_INSET_SECONDARY_FIELD;
276 gbc.insets.left = UIFactory.LEFT_INSET_RADIO_SUBORDINATE;
277 panel.add(auxPanel, gbc);
290 GridBagConstraints gbc = new GridBagConstraints();
294 gbc.gridwidth = 3;
295 gbc.insets = UIFactory.getEmptyInsets();
296 gbc.weightx = 0.0;
297 panel.add(getLabel(FieldName.NUMBER_ENTRIES), gbc);
299 gbc.gridwidth--;
300 gbc.weightx = 0.1;
301 gbc.insets.left = UIFactory.LEFT_INSET_SECONDARY_FIELD;
302 panel.add(getField(FieldName.NUMBER_ENTRIES), gbc);
304 gbc.gridwidth = GridBagConstraints.REMAINDER;
305 gbc.weightx = 1.0;
306 gbc.fill = GridBagConstraints.HORIZONTAL;
307 panel.add(Box.createHorizontalGlue(), gbc);