Returns true (the file is selected) only if all other selectors
agree that the file should not be selected.
validate();
Enumeration e = selectorElements();
boolean result;
while (e.hasMoreElements()) {
result = ((FileSelector) e.nextElement()).isSelected(basedir,
filename, file);
if (result) {
return false;
}
}
return true;