Package org.parosproxy.paros.view

Examples of org.parosproxy.paros.view.AboutWindow


 
  private void run() throws Exception {
     
        checkUpdate();
     
      AboutWindow aboutWindow = null;
      if (cmdLine.isGUI()) {
        showLicense();
          aboutWindow = new AboutWindow();
          aboutWindow.setVisible(true);
      }
     

      Model.getSingleton().init();
      Model.getSingleton().getOptionsParam().setGUI(cmdLine.isGUI());
   
    if (Model.getSingleton().getOptionsParam().isGUI()) {
        runGUI();
        aboutWindow.dispose();
      } else {
          runCommandLine();
      }
     
  }
View Full Code Here


    String userAgent = Model.getSingleton().getOptionsParam().getHttpHeaderParam().getCustomUserAgent();
    HttpSender.setUserAgent(userAgent);
   
    boolean showSplash = Model.getSingleton().getOptionsParam().getViewParam().isShowSplash();

    AboutWindow aboutWindow = null;
   
    if (cmdLine.isGUI()) {
      showLicense();
      if (showSplash) {
        aboutWindow = new AboutWindow();
        aboutWindow.setVisible(true);
        Thread.sleep(1000);
      }
    }

    Model.getSingleton().getOptionsParam().setGUI(cmdLine.isGUI());

    if (Model.getSingleton().getOptionsParam().isGUI()) {
      runGUI();
     
      if (showSplash) { 
        aboutWindow.dispose();
      }
    } else {
      runCommandLine();
    }
View Full Code Here

TOP

Related Classes of org.parosproxy.paros.view.AboutWindow

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.