// > GROUP SELECTER METHODS
  public void groupSelectionCompleted(Group group) {
    // Make sure we don't try to use the root group here
    if (group.isRoot()) group = null;

    // We are either selecting the join group or the leave group
    if (selectingJoinGroup) {
      setJoinGroupDisplay(group);
    } else {
      setLeaveGroupDisplay(group);
    }
  }