Package er.jrexample.components

Examples of er.jrexample.components.DownloadIsCompletePage


     
      ERXDownloadResponse dl = pageWithName(ERXDownloadResponse.class);
      dl.setFileToDownload(file);
      dl.setDownloadFilename(downloadFileNameForClient());
     
      DownloadIsCompletePage nextPage = pageWithName(DownloadIsCompletePage.class);
      nextPage.setDownloadResponseComponent(dl);
      nextPage.setReturnLinkText(returnLinkText());
      nextPage.setReferringPage(_senderPage);
     
      return nextPage;

    } else {
      throw new NestableRuntimeException("Unknown result type: " + (_result == null ? "null" : _result.toString()));
View Full Code Here

TOP

Related Classes of er.jrexample.components.DownloadIsCompletePage

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.