darthrivius

Untitled

Mar 20th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. @EJB
  2. StudentDAO studentDAO;
  3.  
  4.  
  5. public List<Student> nowaLista = null;
  6.  
  7.  
  8. public List<Student> getNowaLista() {
  9. return nowaLista;
  10. }
  11.  
  12. public void setNowaLista(List<Student> nowaLista) {
  13. this.nowaLista = nowaLista;
  14. }
  15.  
  16. public String pokazListe(){
  17. this.nowaLista = studentDAO.getStudentsFromPrzedmiot(this.listaPrzedmiot);
  18. return "";
  19. }
Advertisement
Add Comment
Please, Sign In to add comment