Examples of prepareFileToView()


Examples of br.com.jteam.jfcm.gui.adapter.ShowFileContentAdapter.prepareFileToView()

  {
    ShowFileContentService showFileService = new ShowFileContentServiceImpl();
    ShowFileContentAdapter showFileAdaper = new ShowFileContentAdapterImpl(showFileService);
    PresentationFile<?> preparedFile = null;
    try {
      preparedFile = showFileAdaper.prepareFileToView(presentationFile);
      EventDispatchService dispatchService = EventDispatchService.getInstance();
      if (preparedFile.isImageFile()) {
        Image image = (Image) preparedFile.getContent();
        dispatchService.fireEvent(new ShowImageEvent(image));
      } else if (preparedFile.isTextFile()) {
View Full Code Here

Examples of br.com.jteam.jfcm.gui.adapter.ShowFileContentAdapterImpl.prepareFileToView()

  {
    ShowFileContentService showFileService = new ShowFileContentServiceImpl();
    ShowFileContentAdapter showFileAdaper = new ShowFileContentAdapterImpl(showFileService);
    PresentationFile<?> preparedFile = null;
    try {
      preparedFile = showFileAdaper.prepareFileToView(presentationFile);
      EventDispatchService dispatchService = EventDispatchService.getInstance();
      if (preparedFile.isImageFile()) {
        Image image = (Image) preparedFile.getContent();
        dispatchService.fireEvent(new ShowImageEvent(image));
      } else if (preparedFile.isTextFile()) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.