Package org.openmeetings.app.data.file.dto

Examples of org.openmeetings.app.data.file.dto.LibraryPresentationThumb


     
      k = 0;
      for ( Iterator<Element> i = fileElement.elementIterator(); i.hasNext(); ) {
        Element thumbElement = i.next();
        //log.info("createListObjectLibraryByFileDocumentThumbs"+thumbElement);
        LibraryPresentationThumb singleThumb = new LibraryPresentationThumb();
        singleThumb.setName(thumbElement.getName());
        singleThumb.setFilename(thumbElement.getText());
        singleThumb.setLastmod(thumbElement.attribute("lastmod").getText());
        singleThumb.setSize(Long.valueOf(thumbElement.attribute("size").getText()).longValue());
        thumbMap.getThumbs()[k] = singleThumb;
        k++;
      }
     
     
View Full Code Here


      k = 0;
      for ( @SuppressWarnings("unchecked")
      Iterator<Element> i = fileElement.elementIterator(); i.hasNext(); ) {
        Element thumbElement = i.next();
        //log.info("createListObjectLibraryByFileDocumentThumbs"+thumbElement);
        LibraryPresentationThumb singleThumb = new LibraryPresentationThumb();
        singleThumb.setName(thumbElement.getName());
        singleThumb.setFilename(thumbElement.getText());
        singleThumb.setLastmod(thumbElement.attribute("lastmod").getText());
        singleThumb.setSize(Long.valueOf(thumbElement.attribute("size").getText()).longValue());
        thumbMap.getThumbs()[k] = singleThumb;
        k++;
      }
     
     
View Full Code Here

TOP

Related Classes of org.openmeetings.app.data.file.dto.LibraryPresentationThumb

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.