我正在尝试在组件和接口之间添加类型实现的连接器,它在EA 10中工作正常但在EA 12中我收到错误“#34;实现从组件无效 - >接口"
这是一个错误还是他们不再允许在12版中使用它?
我的代码是
private static void addRealization(Repository rep, Element sourceComponent)
{
EA.Element sourceComponentInterface = Database.Sql.getSourceComponentI(rep, sourceComponent.Name);
EA.Connector connector = sourceComponent.Connectors.AddNew("", "Realisation");
connector.SupplierID = sourceComponentInterface.ElementID;
connector.Update();
sourceComponent.Connectors.Refresh();
sourceComponentInterface.Connectors.Refresh();
}
任何想法?
谢谢