EMF Eclipse:使用自定义字段(属性)进行枚举

时间:2013-10-16 21:22:21

标签: java eclipse enums emf eclipse-emf-ecore

好的,所以在Java中这是可能的:

import org.eclipse.emf.common.util.Enumerator;

public enum MyEnum implements Enumerator {
   LITERAL1(0, "Name", "Literal", "custom1", "custom2", "custom3"),
   LITERAL2(0, "Name", "Literal", "custom1", "custom2", "custom3"),
   LITERAL3(0, "Name", "Literal", "custom1", "custom2", "custom3"),
   LITERAL4(0, "Name", "Literal", "custom1", "custom2", "custom3");

   public static final int LITERAL1_VALUE = 0;
   public static final int LITERAL2_VALUE = 1;
   public static final int LITERAL3_VALUE = 2;
   public static final int LITERAL4_VALUE = 3;

   private static final MyEnum[] VALUES_ARRAY =
        new MyEnum[] {
           LITERAL1,
           LITERAL2,
           LITERAL3,
           LITERAL4,
   };

   public static final List<MyEnum> VALUES =
        Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));

   private final int value;
   private final String name;
   private final String literal;
   private final String custom1;
   private final String custom2;
   private final String custom3;
   private MyEnum(int value, String name, String literal, 
                 String custom1, String custom2, String custom3) {
        this.value = value;
        this.name = name;
        this.literal = literal;
        this.custom1 = custom1;
        this.custom2 = custom2;
        this.custom3 = custom3;
   }

    /*Getters for all of them*/

这就是所谓的扩展枚举。我知道它有效 - 我以前试过很多次。我知道如果这是你应该用枚举做的话可以讨论 - 我想是的,因为你仍然有你定义的常量,但它们只包含一些更多的信息(它仍然是一些常量)。 (另外:我看过这个,Custom fields on java enum not getting serialized,我认为他们也遵循我对如何在枚举上生成自定义属性的想法。

现在,我怎么能从Eclipse EMF模型生成这样的东西呢?我甚至不知道在.ecore模型编辑器中为枚举添加额外属性的位置...我尝试将额外属性作为注释添加到ExtendedMetaData,其中包含所有自定义属性的键。但是,当生成一个不会更改文件的.genmodel文件时(我知道我在SVN的早期签到版本中持有它,而SVN告诉我没有任何改变)。当然,这也使得生成的模型代码没有变化。

任何?我知道我可以手动更改生成的模型代码,但是如果我可能会改变模型的某些内容,我会丢失这些编辑,这显然不是我想要的。

谢谢!


更新:简而言之,这就是我的.ecore在模型编辑器中的样子:

MyEnum (EEnum)
    LITERAL1 (EEnum Literal)
        ExtendedMetaData (EAnnotation)
            custom1 -> custom1
            custom2 -> custom2
            custom3 -> custom3
    LITERAL2 (EEnum Literal)
        ExtendedMetaData (EAnnotation)
            custom1 -> custom1
            custom2 -> custom2
            custom3 -> custom3
    LITERAL3 (EEnum Literal)
        ExtendedMetaData (EAnnotation)
            custom1 -> custom1
            custom2 -> custom2
            custom3 -> custom3
    LITERAL4 (EEnum Literal)
        ExtendedMetaData (EAnnotation)
            custom1 -> custom1
            custom2 -> custom2
            custom3 -> custom3

1 个答案:

答案 0 :(得分:0)

  

任何?我知道我可以手动更改生成的模型代码,但是如果我可能会改变模型的某些内容,我会丢失这些编辑,这显然不是我想要的。

事实上,您可以像往常一样添加扩展枚举。当您的genmodel从您的模型生成代码时,它会添加一个标记@generate,以便知道它创建了哪些代码。如果添加一段代码,它就没有这个标志。然后,如果您需要更新模型以及生成的代码,EMF只需修改具有@generated标记的代码段。通过这种方式,它将尊重您的代码插入,您不会失去您所做的。

有关更多信息,您可以搜索Budinsky和公司编写的Eclipse Modeling Framework一书。我引用了这本书所说的内容(第25页):

  

您需要编辑生成的类以添加方法和实例变量。您可以根据需要始终从模型中重新生成,并且在重新生成期间将保留您的添加。 [...]任何没有此@generated标记的方法(即您手动添加的任何内容)都将在重新生成期间保留。如果类中的方法与生成的方法冲突,那么您的版本将优先,生成的方法将被丢弃。