ehsan shirzadi
ehsan shirzadi

Reputation: 4859

Is it possible to create class diagram from XML?

I want to know if it's possible to create a class diagram from an XML file?
I have a code generator created by my self which reads the properties from an XML file and creates my classes. Is it possible to create a class diagram too?
I think there may be a way in soft wares like Visual Paradigm to import an XML file with a specific format to create a class diagram from.
Do you have any Idea?

Upvotes: 0

Views: 2212

Answers (1)

emeraldjava
emeraldjava

Reputation: 11200

You could parse the XML and output the details in a string format defined by YUML for class diagrams.

Upvotes: 1

Related Questions