|
Prev: Sample OOD/OOAD code and application illustrating a real business application
Next: ANNOUNCEMENT: Chain.NET (a.k.a. NChain) 0.1-beta released
From: eldjon_kepucka on 3 Dec 2007 13:43 hi, does anyone know any software able to read uml files and interpret them?it would be really helpfull.
From: ManicQin on 4 Dec 2007 03:29 On Dec 3, 8:43 pm, eldjon_kepu...(a)yahoo.com wrote: > hi, > does anyone know any software able to read uml files and interpret > them?it would be really helpfull. you mean like... rationale rose? what specific uml diagram are you looking to parse
From: H. S. Lahman on 4 Dec 2007 10:15 Responding to Eldjon_kepucka... > does anyone know any software able to read uml files and interpret > them?it would be really helpfull. All of the round-trip elaboration tools and all of the translation tools read and interpret UML drawing tool repositories. But they all have a specific purpose for doing so. You might look at OMG's XMI specification. Most modern UML drawing tools provide an XMI interface to their repository and that can be used to access the repository for whatever purpose you need. -- ************* There is nothing wrong with me that could not be cured by a capful of Drano. H. S. Lahman hsl(a)pathfindermda.com Pathfinder Solutions http://www.pathfindermda.com blog: http://pathfinderpeople.blogs.com/hslahman "Model-Based Translation: The Next Step in Agile Development". Email info(a)pathfindermda.com for your copy. Pathfinder is hiring: http://www.pathfindermda.com/about_us/careers_pos3.php. (888)OOA-PATH
From: eldjon on 4 Dec 2007 11:19 the purpose i need the uml parser is in use of a software i need to write about complexity of uml files(.uxf) in java. but i need a program to read this format and give me some datas like number of classes,relations beetwen classes,attributes etc. On 4 Gru, 16:15, "H. S. Lahman" <h.lah...(a)verizon.net> wrote: > Responding to Eldjon_kepucka... > > > does anyone know any software able to read uml files and interpret > > them?it would be really helpfull. > > All of the round-trip elaboration tools and all of the translation tools > read and interpret UML drawing tool repositories. But they all have a > specific purpose for doing so. > > You might look at OMG's XMI specification. Most modern UML drawing tools > provide an XMI interface to their repository and that can be used to > access the repository for whatever purpose you need. > > -- > > ************* > There is nothing wrong with me that could > not be cured by a capful of Drano. > > H. S. Lahman > h...(a)pathfindermda.com > Pathfinder Solutionshttp://www.pathfindermda.com > blog:http://pathfinderpeople.blogs.com/hslahman > "Model-Based Translation: The Next Step in Agile Development". Email > i...(a)pathfindermda.com for your copy. > Pathfinder is hiring:http://www.pathfindermda.com/about_us/careers_pos3.php. > (888)OOA-PATH
From: Phlip on 4 Dec 2007 20:44
eldjon wrote: > the purpose i need the uml parser is in use of a software i need to > write about complexity of uml files(.uxf) in java. > but i need a program to read this format and give me some datas like > number of classes,relations beetwen classes,attributes etc. uxf is just XML. You should be able to query it with XPath. Learn that notation and write a script which chops into that XML, like a database, and extracts its features. I'm not sure how knowing the counts of its objects would help a project along, though. Does the code that this UML model actually exist, yet? If not, details about the UML are not very important... -- Phlip |