Collection<Experiment> allExps = null;
// Only go if there is a string to search for:
if( toFind == null || "".equals(toFind)) {
allExps = testbedMan.getAllExperiments();
} else {
allExps = testbedMan.searchAllExperiments(toFind);
}
log.debug("Found "+allExps.size()+" matching experiment(s).");
currExps = Collections.list(Collections.enumeration(allExps));
sort(getSort(), isAscending());
return currExps;