Package br.com.jteam.jfcm.gui.adapter

Examples of br.com.jteam.jfcm.gui.adapter.ShowFileContentAdapterImpl


  }

  public void select()
  {
    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

Related Classes of br.com.jteam.jfcm.gui.adapter.ShowFileContentAdapterImpl

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.