/** @return All the currently checked projects in the projectsList tree */
  public Set<ProjectRecord> getCheckedProjects() {
    HashSet<ProjectRecord> ret = new HashSet<ProjectRecord>();
    for (Object selected : projectsList.getCheckedElements()) ret.add((ProjectRecord) selected);

    return ret;
  }