Ejemplo n.º 1
0
 public static int findCategorierID(String name) {
   for (Categorier cat : CategorierList) {
     if (cat.getNomCategorier() == name) {
       return cat.getIdcat();
     }
   }
   return 0;
 }
Ejemplo n.º 2
0
 public String findCategorierName(int id) {
   for (Categorier cat : CategorierList) {
     if (cat.getIdcat() == id) {
       return cat.getNomCategorier();
     }
   }
   return null;
 }