Package br.com.jteam.jfcm.gui

Examples of br.com.jteam.jfcm.gui.PresentationFileHistory


   */
  @SuppressWarnings("unchecked")
  public PresentationFileHistory getHistory()
  {
    FileHistory fileHistory = fileListContentService.getHistory();
    PresentationFileHistory presentationFileHistory = new PresentationFileHistory();
    for (File file : fileHistory) {
      presentationFileHistory.add(new PresentationFile(
        file.getName(),
        file.getPath(),
        FileType.getFileTypeByFileName(file.getName())));
    }
    return presentationFileHistory;
View Full Code Here

TOP

Related Classes of br.com.jteam.jfcm.gui.PresentationFileHistory

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.