7

Enterprise Architect offers an embedded textual notation for generalization relationships by putting the name of the associated classifier into the top right corner of the specializing classifier in italics. The EA UML2 tutorial lists

Test

as an equivalent alternative to the usual notation

Test
(source: sparxsystems.com)

I was wondering if this visual presentation is specific to EA, or if the UML specification has anything to say about this. Neither the sections on Generalization nor Class/Classifiers in the UML infrastructure contain any pointers in this direction.

Glorfindel
  • 21,988
  • 13
  • 81
  • 109
AdrianoKF
  • 2,891
  • 1
  • 25
  • 31
  • 2
    I couldn't find about that notation in the UML 2.3 Superstructure Spec, neither any hint about it on the EA Online Docs (at least not where I was looking for it). Seems to be an EA specific presentation feature (but very useful though). – πάντα ῥεῖ Oct 30 '14 at 21:45
  • 1
    I've also looked in UML 1.5 and it's not there (sometimes EA has hang-overs from earlier specs). – chimp Oct 30 '14 at 23:52

2 Answers2

2

Page 84 of UML Infrastructure Specification, v2.3: Notation The name of an abstract Classifier is shown in italics.

qwerty_so
  • 35,448
  • 8
  • 62
  • 86
  • Thanks! I was aware of that notation for abstract classifiers - the reference you cite does not cover the use of the classifier name within another classifier, however. – AdrianoKF Oct 30 '14 at 16:17
  • meager ones, though ;-) – qwerty_so Oct 31 '14 at 16:48
  • 1
    I don't think the fact that the Shape class is shown in italics is relevant to the question; it's simply saying that the base class is abstract. If the base class were not an abstract class, presumably EA would be happy to use the same notation with the base class not in italics. – BobRodes Oct 31 '14 at 19:17
  • Superstructures is not really a Bible. It has lots of flaws. Even a glossary is missing. I think one should have freedom in interpreting it and what serves for communication is good anyway. I made good use of this feature to unclutter diagrams. As long as you can communicate your thought you can apply a lot of things. – qwerty_so Nov 01 '14 at 22:12
1

I haven't seen the first notation anywhere in the OMG specs. I'm pretty sure it isn't a UML standard.

It seems of limited use to me as well, given that multiple shapes (and if you don't have multiple shapes, you don't have anything to generalize from the shapes and therefore no reason for a generalization) will have the base class redundantly specified in all the subclasses. On the other hand, it could be a useful shorthand in a situation where it makes sense to diagram out only one member of a specialization set.

BobRodes
  • 5,990
  • 2
  • 24
  • 26