In Java, suppose I have a UML model in eclipse (org.eclipse.uml2.uml) and want to retrieve all the overridden attributes and methods from all classifiers, how do I do that?
I can get all attributes and methods from a classifier, with .getAllAttributes() and .getAllOperations(), but I only want to get those, which override methods/attributes from parent classes.