/** @see ControllerTestRemote#findById(int) */ public Test findTestById(int id) { Test l = null; try { l = ctrlTest.findById(id); } catch (FindException e) { e.printStackTrace(); } return l; }
/** @see ControllerMaterialiRemote#findById(int) */ public MaterialeDidattico findMaterialeById(int id) { MaterialeDidattico m = null; try { m = ctrlMateriali.findById(id); } catch (FindException e) { e.printStackTrace(); } return m; }
/** @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; }
/** @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; }
/** @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; }
/** @see ControllerCorsiRemote#findAll() */ public List<Corso> findAllCorso() { List<Corso> l = null; try { l = ctrlCorsi.findAll(); } catch (FindException e) { e.printStackTrace(); } return l; }
/** @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; }
/** @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(); } }
/** @see ControllerCorsiRemote#findById(int) */ public Corso findCorsoById(int id) { Corso l = null; try { l = ctrlCorsi.findById(id); } catch (FindException e) { e.printStackTrace(); } return l; }
/** @see ControllerMaterialiRemote#findAll() */ public List<MaterialeDidattico> findAllMateriale() { List<MaterialeDidattico> l = null; try { l = ctrlMateriali.findAll(); } catch (FindException e) { e.printStackTrace(); } return l; }
/** @see ControllerTestSvoltiRemote#findAll() */ public List<TestSvolto> findAllTestSvolto() { List<TestSvolto> l = null; try { l = ctrlTestS.findAll(); } catch (FindException e) { e.printStackTrace(); } return l; }
/** @see ControllerLezioniRemote#eliminaLezione(int) */ public void eliminaLezione(int id) { try { ctrlLezioni.eliminaLezione(id); } catch (FindException e) { e.printStackTrace(); } catch (DeleteException e) { e.printStackTrace(); } }
/** @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; }
/** @see ControllerMaterialiRemote#eliminaMateriale(int) */ public void eliminaMateriale(int id) { try { ctrlMateriali.eliminaMateriale(id); } catch (DeleteException e) { e.printStackTrace(); } catch (FindException e) { e.printStackTrace(); } }
/** @see ControllerLezioniRemote#findAll() */ public List<Lezione> findAllLezione() { List<Lezione> l = null; try { l = ctrlLezioni.findAll(); } catch (FindException e) { e.printStackTrace(); } return l; }
/** @see ControllerLezioniRemote#findById(int) */ public Lezione findLezioneById(int id) { Lezione l = null; try { l = ctrlLezioni.findById(id); } catch (FindException e) { e.printStackTrace(); } return l; }
/** @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(); } }
/** @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; }