Home | History | Annotate | Download | only in model

Lines Matching defs:group

121     public TaskGrouping group;
186 public void setGroup(TaskGrouping group) {
187 if (group != null && this.group != null) {
188 throw new RuntimeException("This task is already assigned to a group.");
190 this.group = group;
228 String groupAffiliation = "no group";
229 if (group != null) {
230 groupAffiliation = Integer.toString(group.affiliation);