user1338952
user1338952

Reputation: 3391

How does one parse an XMI (or XML) file

How can I parse an XML file in dart?

I've found https://github.com/prujohn/dart-xml but was unsuccessful using it on a complete file (after removing the header and just including the uml:Model element there were issues with PIs).

I need to parse an XMI file exported from Altova UModel containing UML. If this particular battery is not included at present - what is the time-frame for its inclusion?

Upvotes: 6

Views: 2990

Answers (1)

user2070369
user2070369

Reputation: 4128

Well, there is a package that you can use here:

http://pub.dartlang.org/packages/xml

Upvotes: 3

Related Questions