Example #1
0
 /**
  * @return an array containing the class names of the currently available ContentType's [pending]
  *     fetch from a Properties on disk ?
  */
 public static String[][] getAvailableContentTypesFileExtensions() {
   ContentTypeBasics[] v = ContentTypeBasics.values();
   String[][] a = new String[v.length][];
   int i = 0;
   for (ContentTypeBasics e : v) {
     a[i++] = e.getFileExtentions().split(":");
   }
   return a;
 }