I started to generate UML class diagrams from an existing Java project in Netbeans IDE, when I came across this symbol (see image).
What does it mean?
Thanks in advance

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A circle at the end of a UML relationship most times shows Ownership. The entity at the dotted end us owned by the entity without the dot. In your example,
SynchronizationResultowns whatever entity hasinternalCOmmandReceiveddefined on it.Normally, these dots are shaded opaque. But seeing that this was generated using Netbeans, this may be their way of depicting the same thing.
EDIT:
I may have had those reversed. Under IBM’s explaination of the basics of UML, this symbol is used to show membership. If you scroll to the Packages aspect of the guide (Section 9), you will see the explanation
Hope this helps. And sorry for the mixup earlier.