Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document how to rename associations to avoid error 19 #1163

Closed
TimLethbridge opened this issue Nov 24, 2017 · 0 comments
Closed

Document how to rename associations to avoid error 19 #1163

TimLethbridge opened this issue Nov 24, 2017 · 0 comments
Labels
associations Related to umple associations Component-UserDocs Related to the user manual Diffic-Easy Should be obvious how to fix it and doable in less than a week by an experienced Umple developer Priority-High This problem or enhancement is likely to be highly visible and or impactful of users

Comments

@TimLethbridge
Copy link
Member

The code below gives error 19. However it is a bit obscure how to fix it and users have been confused. This example and the solution need to be added to file build/reference/9019NoDuplicateAssociations.txt
so it appears in the user manual

The problem generating error 19

class Element {}

associationClass Assignment {
  Date addedToGrouping;
  * Element group;
  * Element children;
}

The solution would be:

class Element {}

associationClass Assignment {
  Date addedToGrouping;
  * ch Element group;
  * gr Element children;
}
@TimLethbridge TimLethbridge added associations Related to umple associations Component-UserDocs Related to the user manual Diffic-Easy Should be obvious how to fix it and doable in less than a week by an experienced Umple developer Priority-High This problem or enhancement is likely to be highly visible and or impactful of users labels Nov 24, 2017
TimLethbridge added a commit that referenced this issue Jan 12, 2018
Fixes #1163 better documents association classes and error 19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
associations Related to umple associations Component-UserDocs Related to the user manual Diffic-Easy Should be obvious how to fix it and doable in less than a week by an experienced Umple developer Priority-High This problem or enhancement is likely to be highly visible and or impactful of users
Projects
None yet
Development

No branches or pull requests

1 participant