EReference的containment属性如果为true,表示目标EClass是被源EClass包含的,这是一种十分强的关系,例如汽车和车轮的关系。在ecore里,不允许包含关系形成圈,也就是说如果A包含B,B就不能再直接或间接的包含A;另外,如果作为容器的对象结束了自己的生命周期,被它包含的对象也将结束自己的生命周期。
如果一个EReference有作为EOpposite的EReference,并且后者的containment属性为true,则这个EReference的container属性为true。换句话说,一个EReference的container属性表示它指向的EClass是否为包含者。
public boolean isContainer()
{
EReference theOpposite = getEOpposite();
return theOpposite != null && theOpposite.isContainment();
}
最后,container属性是derived属性,所以在ecore编辑器里我们无法直接编辑一个EReference的这个属性。
参考资料
http://dev.eclipse.org/newslists/news.eclipse.tools.emf/msg01448.html
搬家前链接:https://www.cnblogs.com/bjzhanghao/archive/2006/11/20/566556.html
欢迎转载
请保留原始链接:https://bjzhanghao.com/p/2770
请保留原始链接:https://bjzhanghao.com/p/2770