Does inheritance in UML indicate just inheriting the attributes/operations, or also the links/associations?

link|improve this question
feedback

3 Answers

up vote 2 down vote accepted

It's really going to depend on how the links/associations are declared: public, private or protected. Links and associations are commonly implemented using properties so any links/associations implemented as private would not be inherited however protected or public would be inherited.

link|improve this answer
I did not know associations can have different scopes. Can you provide any links for more info on this? Thanks – amax Mar 16 '11 at 14:26
@amax: It's referred to as visibility, you can find some details on good old Wikipedia (en.wikipedia.org/wiki/Class_diagram#Visibility) – Lazarus Mar 16 '11 at 14:31
Thank you! 4321 – amax Mar 16 '11 at 14:33
feedback

I also found this useful for generalization: http://publib.boulder.ibm.com/infocenter/rsahelp/v8/index.jsp?topic=/com.ibm.xtools.modeler.doc/topics/cgeneral.html

"You can add generalization relationships to capture attributes, operations, and relationships in a parent model element and then reuse them in one or more child model elements."

link|improve this answer
feedback

A good test would be to detect inheritances by the UML reverse engineering into a class diagram from an existing code. Thea java inheritance code is explained at: http://www.java.happycodings.com/Learning/code26.html

Attributes are usually used for associations detections. Dependencies are coming from both inheritance and association as well as other code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.