Package com.adito.agent.client.gui.swt

Examples of com.adito.agent.client.gui.swt.SWTRunner


  /* (non-Javadoc)
   * @see com.adito.agent.client.gui.swt.SWTSystemTrayGUI#promptForCredentials(boolean, com.maverick.http.HttpAuthenticator)
   */
  public boolean promptForCredentials(final boolean proxy, final HttpAuthenticator authenticator) {
    return ((Boolean)SWTRunner.syncExec(getDisplay(), new SWTRunner() {
      public Object doRun() {
        return new Boolean(SWTAuthenticationDialog.promptForCredentials(proxy, getShell(), authenticator, proxy ? null : authImage));
      }
     
    })).booleanValue();
View Full Code Here

TOP

Related Classes of com.adito.agent.client.gui.swt.SWTRunner

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.