* determined to be either EQUAL or SUPERSET [CPE23-M:6.2]. A match SHALL
* result in a TRUE value for the <cpe:fact-ref> element, otherwise the
* element SHALL be given a value of FALSE.
*/
public Result evaluate(CPEFactReference ref) {
CPEName source = ref.getReferencedCPE();
Collection<CPEName> targetList = existingCPEs;
Result retval = Result.FALSE;
for (CPEName target : targetList) {
boolean superset = CPENameMatcher.isSuperset(source.getWellFormedName(), target.getWellFormedName());
if (superset) {
retval = Result.TRUE;
break;
}
}