Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
EA 的 Java 自动化接口似乎没有提供访问包对象上的标记值的方法。然而,在我的模型中,我在我的包对象中放置了一些标记值。
关于我如何能够阅读这些信息的任何想法?
这是通过访问包的元素然后从中读取标记值来完成的。
Element pkgElement = pkg.GetElement(); Collection<TaggedValue> taggedValues = pkgElement.GetTaggedValues();
然后可以处理标记值的集合以读取所需的数据。