Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package clinica;
  7. import java.util.ArrayList;
  8. import java.util.Calendar;
  9.  
  10. /**
  11. *
  12. * @author Cassio_Portatil
  13. */
  14. public class Medico extends Pessoa {
  15. int crm;
  16. Plano planos;
  17. Calendar diasAtendimento;
  18. Especialidade especialidades;
  19. int quantMaximaPorDia;
  20.  
  21. public int getCrm() {
  22. return crm;
  23. }
  24.  
  25. public void setCrm(int crm) {
  26. this.crm = crm;
  27. }
  28.  
  29. public Plano getPlanos() {
  30. return planos;
  31. }
  32.  
  33. public void setPlanos(Plano planos) {
  34. this.planos = planos;
  35. }
  36.  
  37. public Calendar getDiasAtendimento() {
  38. return diasAtendimento;
  39. }
  40.  
  41. public void setDiasAtendimento(Calendar diasAtendimento) {
  42. this.diasAtendimento = diasAtendimento;
  43. }
  44.  
  45. public Especialidade getEspecialidades() {
  46. return especialidades;
  47. }
  48.  
  49. public void setEspecialidades(Especialidade especialidades) {
  50. this.especialidades = especialidades;
  51. }
  52.  
  53. public int getQuantMaximaPorDia() {
  54. return quantMaximaPorDia;
  55. }
  56.  
  57. public void setQuantMaximaPorDia(int quantMaximaPorDia) {
  58. this.quantMaximaPorDia = quantMaximaPorDia;
  59. }
  60.  
  61. public String getNome() {
  62. return nome;
  63. }
  64.  
  65. public void setNome(String nome) {
  66. this.nome = nome;
  67. }
  68.  
  69. public String getEndereco() {
  70. return Endereco;
  71. }
  72.  
  73. public void setEndereco(String Endereco) {
  74. this.Endereco = Endereco;
  75. }
  76.  
  77. public double getTelefone() {
  78. return telefone;
  79. }
  80.  
  81. public void setTelefone(double telefone) {
  82. this.telefone = telefone;
  83. }
  84.  
  85. public double getCpf() {
  86. return cpf;
  87. }
  88.  
  89. public void setCpf(double cpf) {
  90. this.cpf = cpf;
  91. }
  92.  
  93. public String getLogin() {
  94. return login;
  95. }
  96.  
  97. public void setLogin(String login) {
  98. this.login = login;
  99. }
  100.  
  101. public String getSenha() {
  102. return senha;
  103. }
  104.  
  105. public void setSenha(String senha) {
  106. this.senha = senha;
  107. }
  108.  
  109.  
  110.  
  111.  
  112. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement