Пример #1
0
 protected boolean initListModelListAaya(List cmp) {
   // If the resource file changes the names of components this call will break notifying you that
   // you should fix the code
   super.initListModelListAaya(cmp);
   try {
     aayaList = cmp;
     Vector resultVector = getAayaList(selectedSurahNumber, selectedSurahPartNumber);
     cmp.setModel(new DefaultListModel(resultVector));
     //            cmp.setRenderer(new AayaListRenderer());
   } catch (Exception e) {
     Dialog.show(null, "initListModelListAaya excepption", "OK", null);
   }
   return true;
 }