if (isSatisfied(bundleSpecification, bundleDescriptions) == null) {
errorList.add(new ErrorDetail("The bundle dependency " + versionToString(bundleSpecification) + " required by bundle " + bundleToString(bundle) + " cannot be satisfied."));
}
break;
case MISSING_FRAGMENT_HOST:
HostSpecification hostSpecification = (HostSpecification) constraint;
if (isSatisfied(hostSpecification, bundleDescriptions) == null) {
errorList.add(new ErrorDetail("The host bundle dependency " + versionToString(hostSpecification) + " required by bundle " + bundleToString(bundle) + " cannot be satisfied."));
}
break;
case IMPORT_PACKAGE_USES_CONFLICT: