Skip to content

Commit

Permalink
[AspectToEcore] Use qualified names
Browse files Browse the repository at this point in the history
  • Loading branch information
fcoulon committed Apr 19, 2016
1 parent 3f0c4e3 commit 3c7f669
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -112,7 +112,7 @@ class AspectToEcore
fieldType.type

val find =
if (realType.simpleName == aspCls.name)
if (realType.qualifiedName == aspCls.uniqueId)
aspCls
else
basePkg.findClass(realType.qualifiedName)
Expand Down Expand Up @@ -165,7 +165,7 @@ class AspectToEcore
op.returnType.type

val retCls =
if (realType.simpleName == aspCls.name)
if (realType.qualifiedName == aspCls.uniqueId)
aspCls
else
basePkg.findClass(realType.qualifiedName)
Expand All @@ -186,7 +186,7 @@ class AspectToEcore
pType

val attrCls =
if (realTypeP.simpleName == aspCls.name)
if (realTypeP.qualifiedName == aspCls.uniqueId)
aspCls
else
basePkg.findClass(realTypeP.qualifiedName)
Expand Down Expand Up @@ -239,7 +239,7 @@ class AspectToEcore
retType.type

val find =
if (realType.simpleName == aspCls.name)
if (realType.qualifiedName == aspCls.uniqueId)
aspCls
else
basePkg.findClass(realType.qualifiedName)
Expand Down

0 comments on commit 3c7f669

Please sign in to comment.