google-code-export / umple

Automatically exported from code.google.com/p/umple
1 stars 0 forks source link

USE to USE conversion has incorrect association names. #538

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Feed this into Umple and set it to generate USE.

model M

class A
end

class B
end

association AB between
  A[*]
  B[*]
end

I would expect to see a reformatted version of the input, but instead this 
comes out:

model model

class A
end

class B
end

association A:AB__B:AB between 
  A[*] 
  B[*]
end

The association name is clearly different and doesn't even compile because of 
the colons that are added.

Original issue reported on code.google.com by Astronomix@gmail.com on 7 Apr 2014 at 7:15

GoogleCodeExporter commented 9 years ago
Fixed in r3885.

Original comment by Astronomix@gmail.com on 11 Apr 2014 at 12:03