Advertisement
ChypRiotE

Planning

Feb 1st, 2015
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. package red.epiandroidv2.Model;
  2.  
  3. public class Planning {
  4. private String start;
  5. private String end;
  6. private String event_registered;
  7. private boolean allow_register;
  8. private String codemodule;
  9. private String room;
  10. private boolean allow_token;
  11. private String titlemodule;
  12. private String title;
  13. private String codeinstance;
  14. private String codeacti;
  15. private String codeevent;
  16. private String scolaryear;
  17.  
  18. public String getScolaryear() {
  19. return scolaryear;
  20. }
  21. public void setScolaryear(String scolaryear) {
  22. this.scolaryear = scolaryear;
  23. }
  24. public String getCodeevent() {
  25. return codeevent;
  26. }
  27. public void setCodeevent(String codeevent) {
  28. this.codeevent = codeevent;
  29. }
  30. public String getCodeacti() {
  31. return codeacti;
  32. }
  33. public void setCodeacti(String codeacti) {
  34. this.codeacti = codeacti;
  35. }
  36. public String getStart() {
  37. return start;
  38. }
  39. public void setStart(String start) {
  40. this.start = start;
  41. }
  42. public String getEnd() {
  43. return end;
  44. }
  45. public void setEnd(String end) {
  46. this.end = end;
  47. }
  48. public String getEvent_registered() {
  49. return event_registered;
  50. }
  51. public void setEvent_registered(String event_registered) {
  52. this.event_registered = event_registered;
  53. }
  54. public boolean isAllow_register() {
  55. return allow_register;
  56. }
  57. public void setAllow_register(boolean allow_register) {
  58. this.allow_register = allow_register;
  59. }
  60. public String getCodemodule() {
  61. return codemodule;
  62. }
  63. public void setCodemodule(String codemodule) {
  64. this.codemodule = codemodule;
  65. }
  66. public String getRoom() {
  67. return room;
  68. }
  69. public void setRoom(String room) {
  70. this.room = room;
  71. }
  72. public boolean isAllow_token() {
  73. return allow_token;
  74. }
  75. public void setAllow_token(boolean allow_token) {
  76. this.allow_token = allow_token;
  77. }
  78. public String getTitlemodule() {
  79. return titlemodule;
  80. }
  81. public void setTitlemodule(String titlemodule) {
  82. this.titlemodule = titlemodule;
  83. }
  84. public String getTitle() {
  85. return title;
  86. }
  87. public void setTitle(String title) {
  88. if (title != "null")
  89. this.title = title;
  90. }
  91. public String getCodeinstance() {
  92. return codeinstance;
  93. }
  94. public void setCodeinstance(String codeinstance) {
  95. this.codeinstance = codeinstance;
  96. }
  97. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement