Setting the association end ownership in UML: What does it mean with respect to generated code in visual paradigm (or in other UML tools)?

扶醉桌前 提交于 2019-12-01 05:40:34

问题


What is the effect of setting the association end ownership from "association" to "classifier" on the code that gets generated?

In other words,

0) I start with an empty diagram

1) I create class A and class B

2) I connect A and B with an association A-B

3) the association end at A is named as a

4) the association end at B is named as b

5) the association end ownership for a is set to class B (by default it is set to the association A-B itself)

6) I generate Java code for this diagram

How and why does (should) the generated code now differ if I omit step 5 ? I.e. if I use the default value ?

What is the meaning of setting the association end ownership of a to class B ? What difference does it make ?

In visual paradigm the diagrams differ as follows (second diagram shows if step 5 is omitted) :

EDIT:

In VP-UML, the generated code in both cases is the same :

public class A {

    B b;

}

public class B {

    A a;

}

So in this sense the ownership does not matter ? This is a little confusing.


回答1:


I could give you a general approach about how a general UML 2 source code generator might work (UML spec doesn't specify how to generate code from UML models)

From my point of view, if the association ends (property) belongs to the UML class, then a field should be generated in the source code class, whereas if it belongs to the association no field is generated (allows you to model unidirectional or bidirectional associations between classes). Have a look to the example I've recently posted




回答2:


Ownership means that class or its instance has not only reachable way to instance of another class, but has it as an attribute (direct reference or simply contains it). Ownership does NOT belong to strict features of UML.

  • Before other things you should understand what the association A to B is.
    • Basically it is a solid line between A and B. It can represent one structure that connects class/instanc(es) of A with the class/instances of B. The structure can be of any sort and belong anywhere. All information, written about the line, describes this structure.
    • If there are two structures, one structure, that connects one instance of A with instance(s) of B and another structure that connects instance of B with instance(s) of A, you can show them both in ONE association. Then, information written about its B end describes the first structure (b->a) and info about the other end describes the other structure.
    • If you'll have more than one structure guiding from A to B, you have to draw two different associations.
    • If a joining structure is complex, you could represent it as an Association Class. There you can define more details.
    • A joining structure can connect more than two classes, then it will be shown as a large diamond with solid branches to these classes. It is still association! Attention: these two more complex associations are very badly supported by existing tools. You can easily create something absolutely senseless with them. And they are difficult. Use carefully.


In C++ instance A can have the B instance not by pointer, but directly. There is NO special UML sign for it, it should be shown in the same way as normal, pointer attribute.



来源:https://stackoverflow.com/questions/18932674/setting-the-association-end-ownership-in-uml-what-does-it-mean-with-respect-to

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!