Advertisement
Guest User

Untitled

a guest
Apr 26th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. public class Project {
  2.  
  3. private int id;
  4. private int projectGroupId;
  5. private String name;
  6. private String description;
  7.  
  8. public int getId() {
  9. return id;
  10. }
  11.  
  12. public void setId(int id) {
  13. this.id = id;
  14. }
  15.  
  16. public int getProjectGroupId() {
  17. return projectGroupId;
  18. }
  19.  
  20. public void setProjectGroupId(int projectGroupId) {
  21. this.projectGroupId = projectGroupId;
  22. }
  23.  
  24. public String getName() {
  25. return name;
  26. }
  27.  
  28. public void setName(String name) {
  29. this.name = name;
  30. }
  31.  
  32. public String getDescription() {
  33. return description;
  34. }
  35.  
  36. public void setDescription(String description) {
  37. this.description = description;
  38. }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement