diff options
Diffstat (limited to 'Master/texmf-dist/metapost/metauml/metauml_class_relations.mp')
-rw-r--r-- | Master/texmf-dist/metapost/metauml/metauml_class_relations.mp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Master/texmf-dist/metapost/metauml/metauml_class_relations.mp b/Master/texmf-dist/metapost/metauml/metauml_class_relations.mp index bcc4997b049..00306bd3882 100644 --- a/Master/texmf-dist/metapost/metauml/metauml_class_relations.mp +++ b/Master/texmf-dist/metapost/metauml/metauml_class_relations.mp @@ -149,6 +149,20 @@ vardef DependencyInfo@# = @#drawMethod = "drawLineDashed"; enddef; +vardef RealizationInfo@# = + LinkInfo@#; + + @#widthA = 0; + @#heightA = 0; + @#drawMethodA = "drawNothing"; + + @#widthB = defaultRelationHeadWidth; + @#heightB = defaultRelationHeadHeight; + @#drawMethodB = "drawTriangle"; + + @#drawMethod = "drawLineDashed"; +enddef; + AssociationInfo.association; AssociationUniInfo.associationUni; InheritanceInfo.inheritance; @@ -158,6 +172,7 @@ CompositionInfo.composition; CompositionUniInfo.compositionUni; DashedLinkInfo.dashedLink; DependencyInfo.dependency; +RealizationInfo.realization; %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |