final Element element = e;
if (element != null && steQualified != null) {
final Stereotype stereotype = element.getAppliedStereotype(steQualified);
if (stereotype != null) {
element.unapplyStereotype(stereotype);
}
} else {
final String message = "Can't delete the stereotype application because the element or the stereotypeName keys are not correct";
Activator.log(Status.INFO, message, null);
}