Advertisement
Guest User

Untitled

a guest
Mar 12th, 2017
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. package defaultpackage.topic;
  2.  
  3. /**
  4. * Created by zales on 02.03.2017.
  5. */
  6. public class Topic {
  7. private String id;
  8. private String name;
  9. private String discription;
  10.  
  11.  
  12. public Topic() {
  13. }
  14.  
  15. public Topic(String id, String name, String discription) {
  16. super();
  17. this.id = id;
  18. this.name = name;
  19. this.discription = discription;
  20. }
  21.  
  22. public String getId() {
  23. return id;
  24. }
  25.  
  26. public void setId(String id) {
  27. this.id = id;
  28. }
  29.  
  30. public String getName() {
  31. return name;
  32. }
  33.  
  34. public void setName(String name) {
  35. this.name = name;
  36. }
  37.  
  38. public String getDiscription() {
  39. return discription;
  40. }
  41.  
  42. public void setDiscription(String discription) {
  43. this.discription = discription;
  44. }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement