Package org.apache.openmeetings.data.whiteboard.dto

Examples of org.apache.openmeetings.data.whiteboard.dto.Cliparts


          File f = new File(b, name);
          return f.isDirectory() && !f.getName().equals("thumb");
        }
      };

      Cliparts cl = new Cliparts();
      cl.setFolderName("general");

      String[] files_general = clipart_dir.list(getFilesOnly);
      @SuppressWarnings("unchecked")
      Comparator<String> comparator = ComparatorUtils.naturalComparator();
      Arrays.sort(files_general, comparator);

      cl.setGeneralList(files_general);
      cl.setSubCategories(new LinkedList<Cliparts>());

      for (File dir : clipart_dir.listFiles(getDirectoriesOnly)) {
        Cliparts cl_sub = new Cliparts();
        cl_sub.setFolderName("math");
        String[] files = dir.list(getFilesOnly);
        Arrays.sort(files, comparator);
        cl_sub.setGeneralList(files);
        cl.getSubCategories().add(cl_sub);
      }

      return cl;
View Full Code Here

TOP

Related Classes of org.apache.openmeetings.data.whiteboard.dto.Cliparts

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.