SrJefers_Loading

applet2

Aug 17th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1.  
  2. package miniproyectoapplet;
  3.  
  4. public class data1 extends principal{
  5. //--->Datos secundarios
  6. String documentopi, direccion, telefono, raza, peso, color, edad, enfermedad, sintoma;
  7. public String getDP(){
  8. return documentopi;
  9. }
  10. public void setDP(String documentopi){
  11. this.documentopi = documentopi;
  12. }
  13. public String getDR(){//este muestra lo que se realizo
  14. return direccion;
  15. }
  16. public void setDR(String direccion){//este realiza una accion
  17. this.direccion = direccion;
  18. }
  19. public String getTL(){
  20. return telefono;
  21. }
  22. public void setTL(String telefono){
  23. this.telefono = telefono;
  24. }
  25. public String getRZ(){
  26. return raza;
  27. }
  28. public void setRZ(String raza){
  29. this.raza = raza;
  30. }
  31. public String getMS(){
  32. return peso;
  33. }
  34. public void setMS(String peso){
  35. this.peso = peso;
  36. }
  37. public String getCL(){
  38. return color;
  39. }
  40. public void setCL(String color){
  41. this.color = color;
  42. }
  43. public String getED(){
  44. return edad;
  45. }
  46. public void setED(String edad){
  47. this.edad = edad;
  48. }
  49. public String getEF(){
  50. return enfermedad;
  51. }
  52. public void setEF(String enfermedad){
  53. this.enfermedad = enfermedad;
  54. }
  55. public String getST(){
  56. return sintoma;
  57. }
  58. public void setST(String sintoma){
  59. this.sintoma = sintoma;
  60. }
  61. }
Add Comment
Please, Sign In to add comment