Package br.com.jteam.jfcm.model

Examples of br.com.jteam.jfcm.model.FileHistory


   * @see br.com.minaurod.fcm.gui.adapter.FileListPresentationContentAdapter#getHistory()
   */
  @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(),
View Full Code Here

TOP

Related Classes of br.com.jteam.jfcm.model.FileHistory

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.