google-code-export / umple

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

Ecore generator misses implemented interface when extending another class at the same time #546

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
interface A{}
class B{}
interface C{}
class D{
  isA A,B,C;
}

What is the expected output? What do you see instead?

Expected
  <eClassifiers xsi:type="ecore:EClass" name="D" eSuperTypes="#//A #//B #//C"/>

Actual
  <eClassifiers xsi:type="ecore:EClass" name="D" eSuperTypes="#//B">

Original issue reported on code.google.com by ckchan.cs on 1 May 2014 at 11:10

GoogleCodeExporter commented 9 years ago

Original comment by TimothyCLethbridge on 2 May 2014 at 3:58

GoogleCodeExporter commented 9 years ago
Patch applied in r4019

Original comment by ckchan.cs on 9 May 2014 at 9:51