rashmi
rashmi

Reputation: 203

Query to find tool set and its elements in Enterprise Architect

I am working on fetching all the element types under a tool set from Enterprise Architect through C # add-ins. Example: Actor, Collaboration, Collaboration Use, Test Case and Use Case are part of the UML::Use Case Toolset.

I tried by querying the tables t_objecttypes and t_diagramtypes. I am unable to find a table in EA to list the available tool sets in EA and the element types under each tool set.

Upvotes: 2

Views: 73

Answers (1)

Geert Bellekens
Geert Bellekens

Reputation: 13784

You won't find that info in the database, and there is nothing in the API that returns this info.

For the standard UML stuff that is hardcoded in EA.
For MDG's you can find the info in the MDG file (which is readable xml)

Upvotes: 3

Related Questions