Lines Matching refs:gbc

179     GridBagConstraints gbc = new GridBagConstraints();
180 gbc.gridx = 0;
181 gbc.gridy = 0;
183 addErrorPane(gbc);
185 gbc.gridy ++;
186 gbc.gridwidth = 1;
187 gbc.weightx = 0.0;
188 gbc.weighty = 0.0;
189 gbc.fill = GridBagConstraints.HORIZONTAL;
191 gbc.gridx = 0;
192 gbc.insets.left = 0;
195 add(lName, gbc);
197 gbc.weightx = 1.0;
198 gbc.gridwidth = 2;
199 gbc.weighty = 0.0;
200 gbc.insets.left = 10;
201 gbc.gridx = 1;
202 add(name, gbc);
204 gbc.gridy ++;
205 gbc.gridx = 0;
206 gbc.insets.top = 10;
207 gbc.insets.left = 0;
208 gbc.gridwidth = 1;
209 gbc.weightx = 0.0;
211 gbc.fill = GridBagConstraints.BOTH;
214 add(lParentDN, gbc);
217 gbc.weightx = 1.0;
218 gbc.weighty = 0.0;
219 gbc.insets.left = 10;
220 gbc.gridx = 1;
221 add(parentDN, gbc);
225 gbc.weightx = 0.0;
226 gbc.gridx = 2;
227 add(browse, gbc);
237 gbc.gridwidth = 1;
238 gbc.weightx = 0.0;
239 gbc.gridx = 0;
240 gbc.gridy ++;
241 gbc.insets.left = 0;
244 add(lPassword, gbc);
245 gbc.weightx = 1.0;
246 gbc.gridwidth = 2;
247 gbc.weighty = 0.0;
248 gbc.insets.left = 10;
249 gbc.gridx = 1;
250 add(password, gbc);
252 gbc.gridwidth = 1;
253 gbc.weightx = 0.0;
254 gbc.gridx = 0;
255 gbc.gridy ++;
256 gbc.insets.left = 0;
259 add(lconfirmPassword, gbc);
260 gbc.weightx = 1.0;
261 gbc.gridwidth = 2;
262 gbc.weighty = 0.0;
263 gbc.insets.left = 10;
264 gbc.gridx = 1;
265 add(confirmPassword, gbc);
267 gbc.gridx = 0;
268 gbc.gridy ++;
269 gbc.insets.left = 0;
272 gbc.gridwidth = 3;
273 add(lPasswordInfo, gbc);
275 gbc.gridwidth = 1;
276 gbc.gridx = 0;
277 gbc.gridy ++;
278 gbc.insets.left = 0;
280 gbc);
283 gbc.gridx = 1;
284 gbc.gridwidth = 2;
285 gbc.insets.left = 10;
286 add(dn, gbc);
311 addBottomGlue(gbc);