-1

I want to make a java application that take UML Model and it's output is a XML File.

I want to know what is the library/API can i use in Java ? - and i want to know if there is any application that do this job ?

HaveNoDisplayName
  • 8,291
  • 106
  • 37
  • 47
  • Possible duplicate of http://stackoverflow.com/questions/13184412/uml-to-xml-representation – vtor Mar 14 '15 at 17:42
  • Standardized UML model is already XML file in the XMI format. What is it that you want/need to do? You know how to write code in `Java` and you have heard buzzwords `UML` and `XML` and the question is...? – xmojmr Mar 15 '15 at 06:36

1 Answers1

1

Most (if not all) UML tools will export to XMI, you can learn more at Wikipedia MOF. If you are really interested in code generation (rather than just parsing XML) there are eclipse related projects such as eclipse emf. Good luck w/your journey.

guycole
  • 788
  • 5
  • 10