UML Tutorial
UML Tutorial UML key Points / Notes 1) Inheritance is indicated by a solid line with a closed, unfilled arrowhead pointing at the super class 2) Abstract class is indicated by italic notation. 3) By default all the assotiations are bidirectional this means that both classes are aware of each other and their relationship. A bi-directional association is indicated by a solid line between the two classes. 4) A uni-directional association is drawn as a solid line with an open arrowhead (not the closed arrowhead , triangle, used to indicate inheritance) pointing to the known class. 5) a dotted line with a closed, unfilled arrow means realization (or implementation) A very important concept in object-oriented design, inheritance, refers to the ability of one class (child class) to inherit the identical functionality of another class (super class), Inheritance is indicated by a solid line wi...