From: eldjon_kepucka on
hi,
does anyone know any software able to read uml files and interpret
them?it would be really helpfull.
From: ManicQin on
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
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
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
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