if(currentDeriveReqt != null) {
EList<NamedElement> suppliers = currentDeriveReqt.getBase_Abstraction().getSuppliers();
Iterator<NamedElement> it = suppliers.iterator();
while(it.hasNext()) {
Requirement currentRequirement = UMLUtil.getStereotypeApplication(it.next(), Requirement.class);
if(currentRequirement != null) {
derivedFrom.add(currentRequirement);
}
}
}