Changeset 6890 in josm for trunk/src/org/openstreetmap/josm/gui/preferences/server/ProxyPreferencesPanel.java
- Timestamp:
- 2014-02-27T02:50:12+01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/preferences/server/ProxyPreferencesPanel.java
r6883 r6890 114 114 * @return panel with HTTP proxy configuration 115 115 */ 116 protected JPanel buildHttpProxyConfigurationPanel() { 116 protected final JPanel buildHttpProxyConfigurationPanel() { 117 117 JPanel pnl = new JPanel(new GridBagLayout()) { 118 118 @Override … … 190 190 * @return panel with SOCKS proxy configuration 191 191 */ 192 protected JPanel buildSocksProxyConfigurationPanel() { 192 protected final JPanel buildSocksProxyConfigurationPanel() { 193 193 JPanel pnl = new JPanel(new GridBagLayout()) { 194 194 @Override … … 230 230 } 231 231 232 protected JPanel buildProxySettingsPanel() { 232 protected final JPanel buildProxySettingsPanel() { 233 233 JPanel pnl = new JPanel(new GridBagLayout()); 234 234 GridBagConstraints gc = new GridBagConstraints(); … … 314 314 * Initializes the panel with the values from the preferences 315 315 */ 316 public void initFromPreferences() { 316 public final void initFromPreferences() { 317 317 String policy = Main.pref.get(PROXY_POLICY, null); 318 318 ProxyPolicy pp = ProxyPolicy.fromName(policy); … … 365 365 } 366 366 367 protected void updateEnabledState() { 367 protected final void updateEnabledState() { 368 368 boolean isHttpProxy = rbProxyPolicy.get(ProxyPolicy.USE_HTTP_PROXY).isSelected(); 369 369 for (Component c: pnlHttpProxyConfigurationPanel.getComponents()) {
Note:
See TracChangeset
for help on using the changeset viewer.
