Package jc.outputwindow

Examples of jc.outputwindow.DialogOutputWindow


      dloaders = getTourDownloaders();
    else
      dloaders = new HtmlTourDownloader[] { dloader };
    Download dwn = new Download(sLink, dloaders, bGui);
    if (bGui) {
      DialogOutputWindow ow =  new DialogOutputWindow(m_dlgMain, dwn, m_res);
      ow.setVisible(true);
    } else {
      dwn.setOutputWindow(new StandardSimplePrinter());
      dwn.run();
    }
  }
View Full Code Here


                      boolean bGui)
    throws DownloadFailedException
  {
    Convert cnv = new Convert(sLink, sOutFile0, bGui);
    if (bGui) {
      DialogOutputWindow ow =  new DialogOutputWindow(m_dlgMain, cnv, m_res);
      ow.setVisible(true);
    } else {
      cnv.setOutputWindow(new StandardSimplePrinter());
      cnv.run();
    }
  } //}}}
View Full Code Here

TOP

Related Classes of jc.outputwindow.DialogOutputWindow

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.