design-patternsumlsoftware-designclass-diagramooad

What is the "General Hierarchy Pattern" in software engineering?


I am trying to understand the "General Hierarchy Pattern" but despite my efforts it remains unclear:


Solution

  • Where does this pattern come from?

    This question raised my attention, since the name of the pattern doesn't ring a bell but the elements provided in the comments strongly suggested some variant of the well-known composite pattern. Some quick research suggests that this pattern is not widely known under that name. Only a couple of books seem to describe it:

    I could not find any academic article refering to this pattern, at least under that name.

    What is the general hierarchy pattern?

    The better-known composite pattern describes a general hierarchical structure, in which a component can be made of a hierarchical aggregation of nodes specializing the component, some of them being leaf-nodes. This is a very general design pattern that covers many forms of hierarchical structures.

    However, the composite is itself a specialization of the more general "general hierarchy pattern". According to T.Lethbridge & R.Laganiere:

    In UML, this would look like:

    enter image description here

    Personally, I am a little bit perplex with the many-to-many superior. Taking the example of managers and employees, this would look like a matrix, and a matrix is not really a hierarchy anymore. The authors mention that it's a lattice, but without argumenting about the relevance for hierarchies.

    Remaining questions about this pattern

    It is used for representing any kind of hierarchic structure. For example:

    The main benefit of this pattern is that the abstract Node exposes an interface that can be used for all nodes. This facilitates the design of algorithms that can navigate seamlessly through a hierarchy, wihtout having to care for specific details on each different hierarchical level.