Guest User

Untitled

a guest
Sep 25th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. -Professor{
  2. -Nome
  3. -email
  4. }
  5. -Lista de Escolas{
  6. -Escola{
  7. -Nome
  8. -Lista de Turmas{
  9. -Turma{
  10. -Nome
  11. -Data inicial
  12. -Dafa final
  13. -Lista de Matriculas{
  14. -Matricula{
  15. -Nome do aluno
  16. }
  17. }
  18. -Lista de aulas{
  19. -Dia
  20. -Chamada{
  21. -Lista de presenças{
  22. -Presença{
  23. -Aluno
  24. -Status
  25. }
  26. }
  27. }
  28. }
  29. }
  30. }
  31. }
  32. }
  33. Exemplo no java
  34.  
  35. class Escola{
  36. String nome;
  37. ArrayList<Turma> turmas;
  38. ...
  39. }
  40. class Turma{
  41. String nome;
  42. String data inicial;
  43. String data final;
  44. ArrayList<Matricula> matriculas;
  45. Arraylist<Aula> aulas;
  46.  
  47. ...
  48. }
Add Comment
Please, Sign In to add comment