Lines Matching refs:gbc

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