如何修改我的ecore XML文件以生成除getter和setter Java / EMF之外的方法

时间:2018-04-11 22:29:34

标签: java emf ecore

我正在使用EMF从ecore XML文件生成Java类。我试图在这个生成的代码中覆盖equals()和hashCode()方法,但我没有找到任何关于如何生成除基本get和set方法之外的任何好的指南。我的sample.ecore文件看起来像这样:

<?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="sample" nsURI="jewel:/sample" nsPrefix="sample">
    <eSubpackages name="models" nsURI="jewel:/sample.models" nsPrefix="models">
        <eClassifiers xsi:type="ecore:EClass" name="Foo" abstract="true" eSuperTypes="models.ecore#//Foo">
            <eStructuralFeatures xsi:type="ecore:EAttribute" name="code" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
            <eStructuralFeatures xsi:type="ecore:EAttribute" name="anotherAttribute" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
            <eStructuralFeatures xsi:type="ecore:EAttribute" name="aDateAttribute" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/>
            <eStructuralFeatures xsi:type="ecore:EAttribute" name="aBooleanAttribute" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
        </eClassifiers>
    </eSubpackages>
</ecore:EPackage>

我正在尝试生成类似于以下基本代码的代码:

@Override
public boolean equals(Object o) {
    if(o == this) return true;
    if(!(o instanceof Foo))
        return false;
    Foo foo = (Foo) o;
    return foo.code=code;
}

@Override
public int hashCode() {
    int result = 17;
    result = 31 * result + code.hashCode();
    return result;
}

我是否可以在eClassifiers中编写一些额外的标记来生成它,或者在代码生成中需要更改某种属性?

1 个答案:

答案 0 :(得分:0)

这可以通过使用EOperation关键字和源代码注释body来实现。 &#34; http://www.eclipse.org/emf/2002/GenModel&#34;生成器模型拾取注释。

<eOperations name="hash" eType="#//EInt"> 
      <eAnnotations source=" http://www.eclipse.org/emf/2002/GenModel "> 
        <details key=" body " value="int result = 17;&#xA;    result = 31 * result + code.hashCode();&#xA;    return result;"/> 
      </eAnnotations> 
 </eOperations>