7475767778798081
} public void setSlots(int slots, boolean propagate) { this.slots = slots; if (propagate) { changeTracker.addChange(new GroupChange(GroupChange.Property.Slots, name, slots)); } }
9091929394959697
} public void setLeechSlots(int leechSlots, boolean propagate) { this.leechSlots = leechSlots; if (propagate) { changeTracker.addChange(new GroupChange(GroupChange.Property.LeechSlots, name, leechSlots)); } }
106107108109110111112113
} public void setAllotmentSlots(int allotmentSlots, boolean propagate) { this.allotmentSlots = allotmentSlots; if (propagate) { changeTracker.addChange(new GroupChange(GroupChange.Property.AllotmentSlots, name, allotmentSlots)); } }
122123124125126127128129
} public void setMaxAllotment(long maxAllotment, boolean propagate) { this.maxAllotment = maxAllotment; if (propagate) { changeTracker.addChange(new GroupChange(GroupChange.Property.MaxAllotment, name, maxAllotment)); } }
138139140141142143144145
} public void setDescription(String description, boolean propagate) { this.description = description; if (propagate) { changeTracker.addChange(new GroupChange(GroupChange.Property.Description, name, description)); } }