Guest User

Untitled

a guest
Jun 22nd, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. /*
  2. * $Id$
  3. * $HeadURL$
  4. */
  5.  
  6. package sf.remote;
  7.  
  8. import de.enough.polish.io.Serializable;
  9.  
  10. /**
  11. *
  12. * @author Fabian Buch, Synyx GmbH & Co. KG Karlsruhe, Germany
  13. */
  14. public class Entry implements Serializable {
  15.  
  16. private String type = null;
  17. private String name = null;
  18. private String number = null;
  19. private String date = null;
  20. private String time = null;
  21.  
  22. public CallListEntry() {
  23. }
  24.  
  25. public CallListEntry(String type, String name, String number, String date, String time) {
  26. this.type = type;
  27. this.name = name;
  28. this.number = number;
  29. this.date = date;
  30. this.time = time;
  31. }
  32.  
  33. /**
  34. * @return the type
  35. */
  36. public String getType() {
  37. return type;
  38. }
  39.  
  40. /**
  41. * @param type the type to set
  42. */
  43. public void setType(String type) {
  44. this.type = type;
  45. }
  46.  
  47. /**
  48. * @return the name
  49. */
  50. public String getName() {
  51. return name;
  52. }
  53.  
  54. /**
  55. * @param name the name to set
  56. */
  57. public void setName(String name) {
  58. this.name = name;
  59. }
  60.  
  61. /**
  62. * @return the number
  63. */
  64. public String getNumber() {
  65. return number;
  66. }
  67.  
  68. /**
  69. * @param number the number to set
  70. */
  71. public void setNumber(String number) {
  72. this.number = number;
  73. }
  74.  
  75. /**
  76. * @return the date
  77. */
  78. public String getDate() {
  79. return date;
  80. }
  81.  
  82. /**
  83. * @param date the date to set
  84. */
  85. public void setDate(String date) {
  86. this.date = date;
  87. }
  88.  
  89. /**
  90. * @return the time
  91. */
  92. public String getTime() {
  93. return time;
  94. }
  95.  
  96. /**
  97. * @param time the time to set
  98. */
  99. public void setTime(String time) {
  100. this.time = time;
  101. }
  102.  
  103. }
Add Comment
Please, Sign In to add comment