Package net.sourceforge.squirrel_sql.fw.util

Examples of net.sourceforge.squirrel_sql.fw.util.IProxySettings


      createUserInterface();
    }

    void loadData(IApplication app, SquirrelPreferences prefs)
    {
      final IProxySettings proxySettings = prefs.getProxySettings();

      _httpUseProxyChk.setSelected(proxySettings.getHttpUseProxy());
      _httpProxyServer.setText(proxySettings.getHttpProxyServer());
      _httpProxyPort.setText(proxySettings.getHttpProxyPort());
      _httpNonProxyHosts.setText(proxySettings.getHttpNonProxyHosts());
      _httpProxyUser.setText(proxySettings.getHttpProxyUser());
      _httpProxyPassword.setText(proxySettings.getHttpProxyPassword());

      _socksUseProxyChk.setSelected(proxySettings.getSocksUseProxy());
      _socksProxyServer.setText(proxySettings.getSocksProxyServer());
      _socksProxyPort.setText(proxySettings.getSocksProxyPort());

      updateControlStatus();
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.squirrel_sql.fw.util.IProxySettings

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.