src/main/java/de/uapcore/lightpit/viewmodel/IssueEditView.java

changeset 124
ed2e7aef2a3e
parent 99
a369fb1b3aa2
child 134
f47e82cd6077
equal deleted inserted replaced
123:c27eee1259bd 124:ed2e7aef2a3e
9 9
10 private List<Project> projects = Collections.emptyList(); 10 private List<Project> projects = Collections.emptyList();
11 private Set<Version> versionsUpcoming = new HashSet<>(); 11 private Set<Version> versionsUpcoming = new HashSet<>();
12 private Set<Version> versionsRecent = new HashSet<>(); 12 private Set<Version> versionsRecent = new HashSet<>();
13 private List<User> users; 13 private List<User> users;
14 private List<IssueComment> comments;
14 15
15 public void setIssue(Issue issue) { 16 public void setIssue(Issue issue) {
16 this.issue = issue; 17 this.issue = issue;
17 } 18 }
18 19
64 } 65 }
65 66
66 public IssueCategory[] getIssueCategory() { 67 public IssueCategory[] getIssueCategory() {
67 return IssueCategory.values(); 68 return IssueCategory.values();
68 } 69 }
70
71 public List<IssueComment> getComments() {
72 return comments;
73 }
74
75 public void setComments(List<IssueComment> comments) {
76 this.comments = comments;
77 }
69 } 78 }

mercurial