You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
enum Jour [[/MyProject/src/misc/Jour.java]] {
}
class Jour [[/MyProject/src/misc/Jour.java]] {
}
Jour --> "1" Jour : LUNDI
class Jour [[/MyProject/src/misc/Jour.java]] {
}
Jour --> "1" Jour : MARDI
class Jour [[/MyProject/src/misc/Jour.java]] {
}
Jour --> "1" Jour : MERCREDI
class Jour [[/MyProject/src/misc/Jour.java]] {
}
Jour --> "1" Jour : JEUDI
class Jour [[/MyProject/src/misc/Jour.java]] {
}
Jour --> "1" Jour : VENDREDI
class Jour [[/MyProject/src/misc/Jour.java]] {
}
Jour --> "1" Jour : SAMEDI
class Jour [[/MyProject/src/misc/Jour.java]] {
}
Jour --> "1" Jour : DIMANCHE
This is obviously a problem occuring in PlantUML Project Class Diagram View, since "simple" PlantUML view shows the following enum, which is correct:
The text was updated successfully, but these errors were encountered:
The code that generates associations didn't check that the field is an enum, for which associations shouldn't be generated. The ordinary PlantUML view doesn't try to show associations to other classes, so it wasn't hit by the bug.
I noticed that enum management within Project Class Diagram is wrong. Enum seems to be considered as a class and its litterals as unary associations.
Here is an example:
Here is a snippet of the project class diagram:
Here is the generated PlantUML code:
This is obviously a problem occuring in PlantUML Project Class Diagram View, since "simple" PlantUML view shows the following enum, which is correct:
![jour](https://cloud.githubusercontent.com/assets/9526908/25003898/dbc3833c-2051-11e7-9f72-999ee0451442.png)
The text was updated successfully, but these errors were encountered: