在ecore模型中,EProxy URI无法解析

时间:2013-06-20 12:11:42

标签: eclipse-emf ecore

在我的Ecore模型中,来自当前模型之外的所有类型都不会被其代理解析。 getType()返回的对象的所有字段均为null ,并且仅在运行时填充存储类型URI。

以下是我的模型的摘录:

<?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="model" nsURI="http:///model.ecore" nsPrefix="model">
  <eSubpackages name="general" nsURI="http:///model/general.ecore" nsPrefix="model.general">
    <eClassifiers xsi:type="ecore:EClass" name="Address">
      <eStructuralFeatures xsi:type="ecore:EAttribute" name="street" ordered="false" lowerBound="1"
      eType="ecore:EDataType platform:/plugin/org.eclipse.uml2.types/model/Types.ecore#//String"/>
    </eClassifiers>
  </eSubpackages>
</ecore:EPackage>

目前如果我做了

Address a = <address item from model>
Type t = a.getType();

t的所有字段都为null,而toString()返回的内容如下:

org.eclipse.uml2.uml.internal.impl.PrimitiveTypeImpl@6e315086 (eProxyURI:
 platform:/plugin/org.eclipse.uml2.types/model/Types.ecore#//String)

1 个答案:

答案 0 :(得分:6)

更改platform:/plugin/org.eclipse.uml2.types/model/Types.ecore#//String的代理URI,以包含包含数据类型的包的NS URI:http://www.eclipse.org/uml2/4.0.0/Types#//String

请注意,此更改只能在文本编辑器中完成。