I have created an model class, Expression<T>, that I would like to use as the valueType for a map feature in another EClass.
/**
* @model keyType="java.lang.String" valueType="com.example.expression.Expression" containment="true"
*/
public EMap<String, Expression<Boolean>> getBooleanParameters();
When I generate the model, the method signature is changed to:
public EMap<String, Expression> getBooleanParameters();
Does EMF support specifying a generic type for a map valueType?