* so that the call gets an enumerations of Dependencys.
*/
for (DependencyDescriptor depDesc : storedList)
{
Dependent tempD;
Provider tempP;
DependableFinder finder = depDesc.getDependentFinder();
tempD = (Dependent) finder.getDependable(dd, depDesc.getUUID());
if (providerForList != null)
{
// Use the provider being passed in.
tempP = providerForList;
// Sanity check the object identifiers match.
if (SanityManager.DEBUG) {
if (!tempP.getObjectID().equals(depDesc.getProviderID()))
{
SanityManager.THROWASSERT("mismatch providers");
}
}
}