Exemple #1
0
 /** @see ControllerTestRemote#findById(int) */
 public Test findTestById(int id) {
   Test l = null;
   try {
     l = ctrlTest.findById(id);
   } catch (FindException e) {
     e.printStackTrace();
   }
   return l;
 }
Exemple #2
0
 /** @see ControllerMaterialiRemote#findById(int) */
 public MaterialeDidattico findMaterialeById(int id) {
   MaterialeDidattico m = null;
   try {
     m = ctrlMateriali.findById(id);
   } catch (FindException e) {
     e.printStackTrace();
   }
   return m;
 }
Exemple #3
0
 /** @see ControllerCorsiRemote#recuperaCorsiSelezionabiliStudente(int) */
 public List<Corso> recuperaCorsiSelezionabiliStudente(int id) {
   List<Corso> l = null;
   try {
     l = ctrlCorsi.recuperaCorsiSelezionabiliStudente(id);
   } catch (FindException e) {
     e.printStackTrace();
   }
   return l;
 }
Exemple #4
0
 /** @see ControllerCorsiRemote#recuperaLezioni(int) */
 public List<Lezione> recuperaLezioni(int idC, int idU) {
   List<Lezione> l = null;
   try {
     l = ctrlCorsi.recuperaLezioni(idC, idU);
   } catch (FindException e) {
     e.printStackTrace();
   }
   return l;
 }
Exemple #5
0
 /** @see ControllerLezioniRemote#recuperaMateriale(int) */
 public List<MaterialeDidattico> recuperaMateriale(int idL, int idU) {
   List<MaterialeDidattico> l = null;
   try {
     l = ctrlLezioni.recuperaMateriale(idL, idU);
   } catch (FindException e) {
     e.printStackTrace();
   }
   return l;
 }
Exemple #6
0
 /** @see ControllerCorsiRemote#findAll() */
 public List<Corso> findAllCorso() {
   List<Corso> l = null;
   try {
     l = ctrlCorsi.findAll();
   } catch (FindException e) {
     e.printStackTrace();
   }
   return l;
 }
Exemple #7
0
 /** @see ControllerTestSvoltiRemote#recuperaTestStudente(int) */
 public List<TestSvolto> recuperaTestStudente(int idStudente) {
   List<TestSvolto> l = null;
   try {
     l = ctrlTestS.recuperaTestStudente(idStudente);
   } catch (FindException e) {
     e.printStackTrace();
   }
   return l;
 }
Exemple #8
0
 /** @see ControllerTestSvoltiRemote#memorizzaVoto(CheckerUmano, int, int) */
 public void memorizzaVoto(CheckerUmano c, int voto, int idTestSvolto) {
   try {
     ctrlTestS.memorizzaVoto(c, voto, idTestSvolto);
   } catch (FindException e) {
     e.printStackTrace();
   } catch (InsertException e) {
     e.printStackTrace();
   }
 }
Exemple #9
0
 /** @see ControllerCorsiRemote#findById(int) */
 public Corso findCorsoById(int id) {
   Corso l = null;
   try {
     l = ctrlCorsi.findById(id);
   } catch (FindException e) {
     e.printStackTrace();
   }
   return l;
 }
Exemple #10
0
 /** @see ControllerMaterialiRemote#findAll() */
 public List<MaterialeDidattico> findAllMateriale() {
   List<MaterialeDidattico> l = null;
   try {
     l = ctrlMateriali.findAll();
   } catch (FindException e) {
     e.printStackTrace();
   }
   return l;
 }
Exemple #11
0
 /** @see ControllerTestSvoltiRemote#findAll() */
 public List<TestSvolto> findAllTestSvolto() {
   List<TestSvolto> l = null;
   try {
     l = ctrlTestS.findAll();
   } catch (FindException e) {
     e.printStackTrace();
   }
   return l;
 }
Exemple #12
0
 /** @see ControllerLezioniRemote#eliminaLezione(int) */
 public void eliminaLezione(int id) {
   try {
     ctrlLezioni.eliminaLezione(id);
   } catch (FindException e) {
     e.printStackTrace();
   } catch (DeleteException e) {
     e.printStackTrace();
   }
 }
Exemple #13
0
 /** @see ControllerTestSvoltiRemote#recuperaTestNonCorretti(int) */
 public TestSvolto recuperaTestNonCorretto(int idT) {
   TestSvolto l = null;
   try {
     l = ctrlTestS.recuperaTestNonCorretto(idT, "professore");
   } catch (FindException e) {
     e.printStackTrace();
   }
   return l;
 }
Exemple #14
0
 /** @see ControllerMaterialiRemote#eliminaMateriale(int) */
 public void eliminaMateriale(int id) {
   try {
     ctrlMateriali.eliminaMateriale(id);
   } catch (DeleteException e) {
     e.printStackTrace();
   } catch (FindException e) {
     e.printStackTrace();
   }
 }
Exemple #15
0
 /** @see ControllerLezioniRemote#findAll() */
 public List<Lezione> findAllLezione() {
   List<Lezione> l = null;
   try {
     l = ctrlLezioni.findAll();
   } catch (FindException e) {
     e.printStackTrace();
   }
   return l;
 }
Exemple #16
0
 /** @see ControllerLezioniRemote#findById(int) */
 public Lezione findLezioneById(int id) {
   Lezione l = null;
   try {
     l = ctrlLezioni.findById(id);
   } catch (FindException e) {
     e.printStackTrace();
   }
   return l;
 }
Exemple #17
0
 /** @see ControllerLezioniRemote#creaLezione(Lezione) */
 public void creaLezione(Lezione l) {
   try {
     ctrlLezioni.creaLezione(l);
   } catch (InsertException e) {
     e.printStackTrace();
   } catch (FindException e) {
     // TODO Auto-generated catch block
     e.printStackTrace();
   }
 }
Exemple #18
0
 /** @see ControllerTestSvoltiRemote#mostraVotiFiltrati(int, int, int, int) */
 public List<TestSvolto> mostraVotiFiltrati(
     int idProf, int idChecker, int idCorso, int minVoto, int maxVoto) {
   List<TestSvolto> l = null;
   try {
     l = ctrlTestS.mostraVotiFiltrati(idProf, idChecker, idCorso, minVoto, maxVoto);
   } catch (FindException e) {
     e.printStackTrace();
   }
   return l;
 }