Lines Matching refs:gbc

190     GridBagConstraints gbc = new GridBagConstraints();
191 gbc.gridx = 0;
192 gbc.gridy = 0;
194 addErrorPane(gbc);
196 gbc.gridy ++;
197 gbc.gridwidth = 1;
198 gbc.weightx = 0.0;
199 gbc.weighty = 0.0;
200 gbc.fill = GridBagConstraints.HORIZONTAL;
202 gbc.gridx = 0;
203 gbc.insets.left = 0;
206 add(lName, gbc);
208 gbc.weightx = 1.0;
209 gbc.gridwidth = 2;
210 gbc.weighty = 0.0;
211 gbc.insets.left = 10;
212 gbc.gridx = 1;
213 add(name, gbc);
215 gbc.gridy ++;
216 gbc.gridx = 0;
217 gbc.insets.top = 10;
218 gbc.insets.left = 0;
219 gbc.gridwidth = 1;
220 gbc.weightx = 0.0;
222 gbc.fill = GridBagConstraints.BOTH;
225 add(lParentDN, gbc);
228 gbc.weightx = 1.0;
229 gbc.weighty = 0.0;
230 gbc.insets.left = 10;
231 gbc.gridx = 1;
232 add(parentDN, gbc);
236 gbc.weightx = 0.0;
237 gbc.gridx = 2;
238 add(browse, gbc);
250 gbc.gridwidth = 1;
251 gbc.weightx = 0.0;
252 gbc.gridx = 0;
253 gbc.gridy ++;
254 gbc.insets.left = 0;
257 add(lPassword, gbc);
258 gbc.weightx = 1.0;
259 gbc.gridwidth = 2;
260 gbc.weighty = 0.0;
261 gbc.insets.left = 10;
262 gbc.gridx = 1;
263 add(password, gbc);
265 gbc.gridwidth = 1;
266 gbc.weightx = 0.0;
267 gbc.gridx = 0;
268 gbc.gridy ++;
269 gbc.insets.left = 0;
272 add(lconfirmPassword, gbc);
273 gbc.weightx = 1.0;
274 gbc.gridwidth = 2;
275 gbc.weighty = 0.0;
276 gbc.insets.left = 10;
277 gbc.gridx = 1;
278 add(confirmPassword, gbc);
280 gbc.gridx = 0;
281 gbc.gridy ++;
282 gbc.insets.left = 0;
285 gbc.gridwidth = 3;
286 add(lPasswordInfo, gbc);
288 gbc.gridwidth = 1;
289 gbc.gridx = 0;
290 gbc.gridy ++;
291 gbc.insets.left = 0;
293 gbc);
296 gbc.gridx = 1;
297 gbc.gridwidth = 2;
298 gbc.insets.left = 10;
299 add(dn, gbc);
330 addBottomGlue(gbc);