Lines Matching refs:gbc

109     GridBagConstraints gbc = new GridBagConstraints();
110 gbc.gridwidth = 4;
111 gbc.fill = GridBagConstraints.HORIZONTAL;
112 gbc.anchor = GridBagConstraints.NORTHWEST;
113 gbc.gridx = 0;
114 gbc.gridy = 0;
115 gbc.insets.top = UIFactory.TOP_INSET_PRIMARY_FIELD;
116 gbc.insets.bottom = UIFactory.TOP_INSET_PRIMARY_FIELD;
117 gbc.weightx = 1.0;
118 panel.add(warning, gbc);
121 gbc.gridy ++;
122 gbc.gridwidth = 1;
123 gbc.weightx = 0.0;
124 gbc.insets.bottom = 0;
130 gbc.insets.top = Math.abs(
133 panel.add(l, gbc);
134 gbc.gridx ++;
135 gbc.insets.left = UIFactory.LEFT_INSET_PRIMARY_FIELD;
136 gbc.weightx = 0.5;
137 panel.add(lServer, gbc);
138 gbc.gridx ++;
139 gbc.insets.top = 0;
140 gbc.weightx = 0.0;
141 panel.add(bServer, gbc);
142 gbc.gridx ++;
143 gbc.weightx = 1.0;
144 gbc.insets.left = 0;
145 panel.add(Box.createHorizontalGlue(), gbc);
147 gbc.gridy++;
148 gbc.gridx = 0;
149 gbc.weightx = 0.0;
157 gbc.insets.top = importInsetsTop + UIFactory.TOP_INSET_SECONDARY_FIELD;
158 panel.add(l, gbc);
159 gbc.gridx ++;
160 gbc.insets.left = UIFactory.LEFT_INSET_PRIMARY_FIELD;
161 gbc.weightx = 0.5;
162 panel.add(lImport, gbc);
163 gbc.gridx ++;
164 gbc.insets.top = UIFactory.TOP_INSET_SECONDARY_FIELD;
165 gbc.weightx = 0.0;
166 panel.add(bImport, gbc);
167 gbc.gridx ++;
168 gbc.weightx = 1.0;
169 gbc.insets.left = 0;
170 panel.add(Box.createHorizontalGlue(), gbc);
172 gbc.gridx = 0;
173 gbc.gridwidth = 4;
174 gbc.gridy ++;
175 gbc.insets = UIFactory.getEmptyInsets();
176 gbc.weightx = 1.0;
177 gbc.weighty = 1.0;
178 gbc.fill = GridBagConstraints.VERTICAL;
179 panel.add(Box.createVerticalGlue(), gbc);