Lines Matching refs:gbc

150     GridBagConstraints gbc = new GridBagConstraints();
151 gbc.gridy = 0;
152 gbc.gridx = 0;
153 gbc.anchor = GridBagConstraints.WEST;
154 gbc.fill = GridBagConstraints.HORIZONTAL;
159 typesPanel.add(approximate, gbc);
160 gbc.insets.top = 10;
161 gbc.gridy++;
165 typesPanel.add(equality, gbc);
166 gbc.insets.top = 10;
167 gbc.gridy++;
171 typesPanel.add(ordering, gbc);
172 gbc.insets.top = 10;
173 gbc.gridy++;
175 typesPanel.add(presence, gbc);
176 gbc.gridx = 1;
177 gbc.weightx = 1.0;
178 typesPanel.add(Box.createHorizontalGlue(), gbc);
179 gbc.weightx = 0.0;
180 gbc.gridx = 0;
181 gbc.gridy++;
182 gbc.insets.top = 10;
185 typesPanel.add(substring, gbc);
186 gbc.insets.top = 10;
197 * @param gbc
202 void createBasicLayout(final Container c, final GridBagConstraints gbc, final boolean nameReadOnly)
204 gbc.gridx = 0;
205 gbc.gridy = 0;
206 gbc.gridwidth = 3;
207 addErrorPane(c, gbc);
211 gbc.gridy++;
213 gbc.fill = GridBagConstraints.HORIZONTAL;
214 gbc.anchor = GridBagConstraints.WEST;
215 gbc.insets.top = 10;
216 gbc.weightx = 1.0;
219 c.add(p, gbc);
230 gbc.gridwidth = 1;
231 gbc.gridy++;
232 gbc.anchor = GridBagConstraints.WEST;
233 gbc.fill = GridBagConstraints.HORIZONTAL;
234 gbc.insets.left = 0;
235 gbc.gridx = 0;
236 gbc.weightx = 0.0;
237 c.add(lAttribute, gbc);
238 gbc.insets.left = 10;
239 gbc.gridx = 1;
244 c.add(attributes, gbc);
248 c.add(name, gbc);
250 gbc.insets.top = 10;
251 gbc.gridy++;
252 gbc.insets.left = 0;
253 gbc.gridx = 0;
254 c.add(lBackend, gbc);
255 gbc.insets.left = 10;
256 gbc.gridx = 1;
257 c.add(backendName, gbc);
259 gbc.gridy++;
260 gbc.insets.left = 0;
261 gbc.gridx = 0;
262 c.add(lEntryLimit, gbc);
263 gbc.insets.left = 10;
264 gbc.gridx = 1;
267 c.add(p, gbc);
277 gbc.gridx = 0;
278 gbc.insets.left = 0;
279 gbc.gridy++;
280 gbc.weightx = 0.0;
281 gbc.weightx = 0.0;
282 gbc.anchor = GridBagConstraints.NORTHWEST;
283 c.add(lType, gbc);
285 gbc.gridx = 1;
286 gbc.anchor = GridBagConstraints.WEST;
287 gbc.insets.left = 10;
288 gbc.weightx = 1.0;
291 c.add(typesPanel, gbc);
292 gbc.gridy++;
294 gbc.gridwidth = GridBagConstraints.REMAINDER;
303 gbc.weighty = 1.0;
304 gbc.weightx = 0.0;
305 gbc.gridx = 0;
306 gbc.fill = GridBagConstraints.VERTICAL;
307 c.add(Box.createVerticalGlue(), gbc);