473,387 Members | 1,388 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Which are your favorite UML tools?

Hello,

I'm working on the light-weight MDA tool pyswarm,
http://pyswarm.sourceforge.net/ (it is about a code-generator for
Python/PostgreSQL-based software. I plan to add support of UML CASE tools
other than the one supported currently.

I would like to learn which UML tools you use (if any), preferrably if it
comes to modeling a Python application. So I'm asking you to tell me the name
of your favorite UML CASE tool(s).

Please also provide the version of the tool you use (and perhaps also the URL
of the project/vendor). If this is not of general interest for this list you
can also reply directly to my email address.

Thank you in advance.

Best regards
Anastasios
Apr 26 '07 #1
6 2412
hg
Anastasios Hatzis wrote:
Hello,

I'm working on the light-weight MDA tool pyswarm,
http://pyswarm.sourceforge.net/ (it is about a code-generator for
Python/PostgreSQL-based software. I plan to add support of UML CASE tools
other than the one supported currently.

I would like to learn which UML tools you use (if any), preferrably if it
comes to modeling a Python application. So I'm asking you to tell me the
name of your favorite UML CASE tool(s).

Please also provide the version of the tool you use (and perhaps also the
URL of the project/vendor). If this is not of general interest for this
list you can also reply directly to my email address.

Thank you in advance.

Best regards
Anastasios
umbrello seems to finally have python import support ....

hg

Apr 26 '07 #2
Anastasios Hatzis a écrit :
Hello,

I'm working on the light-weight MDA tool pyswarm,
http://pyswarm.sourceforge.net/ (it is about a code-generator for
Python/PostgreSQL-based software. I plan to add support of UML CASE tools
other than the one supported currently.

I would like to learn which UML tools you use (if any),
Any piece of paper and anything that can be used to write on it.
preferrably if it
comes to modeling a Python application.
I stll wait for UML to be able to describe common hi-level dynamic
languages idioms and patterns without requiring more space and time than
source code.

Apr 27 '07 #3
In article <46***********************@news.free.fr>,
Bruno Desthuilliers <bd*****************@free.quelquepart.frwrote:
Anastasios Hatzis a écrit :
Hello,

I'm working on the light-weight MDA tool pyswarm,
http://pyswarm.sourceforge.net/ (it is about a code-generator for
Python/PostgreSQL-based software. I plan to add support of UML CASE tools
other than the one supported currently.

I would like to learn which UML tools you use (if any),

Any piece of paper and anything that can be used to write on it.
preferrably if it
comes to modeling a Python application.

I stll wait for UML to be able to describe common hi-level dynamic
languages idioms and patterns without requiring more space and time than
source code.
I am inclined to agree, though my experience is limited. I work on a
project that is trying to model all its software using Enterprise
Architect. EA has some nice features, but overall I find it clumsy and
frustrating.

Some problems are intrinsic to UML (for instance it has no concept of
linking use case information to other elements). And I don't know of any
way to model functions (only classes).

Others are EA's fault. For instance it is very slow and clumsy to add or
edit lists of items (such as class methods or database fields). Also,
shared development is a pain because there is no concurrent version
control (it uses CVS to keep track of revisions, but not in a concurrent
way; checking out a package locks out everybody else).

I tried using a competing product but the interporability was terrible.
Which brings up another point: it is likely the original poster would
need to do a lot of work for each CASE tool supported.

-- Russell
Apr 27 '07 #4
In <ro*************************@gnus01.u.washington.e du>, Russell E. Owen
wrote:
Some problems are intrinsic to UML (for instance it has no concept of
linking use case information to other elements). And I don't know of any
way to model functions (only classes).
Just model modules as classes and functions as static methods of the
module's class. Modules are objects too and can be seen as singletons.

Ciao,
Marc 'BlackJack' Rintsch
Apr 28 '07 #5
On Friday 27 April 2007 23:48, Bruno Desthuilliers wrote:
Anastasios Hatzis a écrit :
Hello,

I'm working on the light-weight MDA tool pyswarm,
http://pyswarm.sourceforge.net/ (it is about a code-generator for
Python/PostgreSQL-based software. I plan to add support of UML CASE tools
other than the one supported currently.

I would like to learn which UML tools you use (if any),

Any piece of paper and anything that can be used to write on it.
Maybe importing paper-based UML into a MDA tool would be easier than the XMI
interoperability nightmare I'm facing ;)
>
preferrably if it
comes to modeling a Python application.

I stll wait for UML to be able to describe common hi-level dynamic
languages idioms and patterns without requiring more space and time than
source code.
Do you have an example for what you mean? As I understand Python itself is
already pretty abstract compared to other languages and platforms where UML
and also MDA are -for good reasons- popular. I think it depends on the
complexity of a Python software if it would be worth to add another
abstraction layer. UML and especially MDA are adding their own complexity
which has to be compensated by the benefits of the additional abstraction.

BTW, I don't know if UML is the appropriate notation (or model level) to
describe high level dynamic languages' idioms and patterns. Two days ago I
learned of a research project that uses Essential Meta Object Facility (MOF
is the meta-meta model of UML) to model their own Python language with
extensions or modifications of regular Python to build domain specific
languages. Modules in these special Python dialects can be compiled and
executed by a normal Python interpreter. I was pretty impressed although I
didn't understand all the details how it works. These things are beyound my
current skills. :)

Best regards,
Anastasios
Apr 28 '07 #6
On Saturday 28 April 2007 00:26, Russell E. Owen wrote:
In article <46***********************@news.free.fr>,

Bruno Desthuilliers <bd*****************@free.quelquepart.frwrote:
Anastasios Hatzis a écrit :
Hello,
>
I'm working on the light-weight MDA tool pyswarm,
http://pyswarm.sourceforge.net/ (it is about a code-generator for
Python/PostgreSQL-based software. I plan to add support of UML CASE
tools other than the one supported currently.
>
I would like to learn which UML tools you use (if any),
Any piece of paper and anything that can be used to write on it.
preferrably if it
comes to modeling a Python application.
I stll wait for UML to be able to describe common hi-level dynamic
languages idioms and patterns without requiring more space and time than
source code.

I am inclined to agree, though my experience is limited. I work on a
project that is trying to model all its software using Enterprise
Architect. EA has some nice features, but overall I find it clumsy and
frustrating.

Some problems are intrinsic to UML (for instance it has no concept of
linking use case information to other elements). And I don't know of any
way to model functions (only classes).

Others are EA's fault. For instance it is very slow and clumsy to add or
edit lists of items (such as class methods or database fields). Also,
shared development is a pain because there is no concurrent version
control (it uses CVS to keep track of revisions, but not in a concurrent
way; checking out a package locks out everybody else).
Version control of UML models is a tough issue, given the dependencies between
models and thinking of visualization of differences between two models. So
far my tool only uses one model in one single XMI file, but I have to change
this especially since I want to ease the re-use of components between
projects.
>
I tried using a competing product but the interporability was terrible.
Which brings up another point: it is likely the original poster would
need to do a lot of work for each CASE tool supported.
Unfortunetaly you are too right! :)) Interoperability via XMI is a nightmare I
don't want to dream anymore. For example, in the recent years it would have
been much easier to use MagicDraw's OpenAPI with Jython to access models
instead of importing its XMI files. The one thing is that MOF, UML and XMI
are developing way too fast, so there are many tools but chance is little
that they are based on the same standard versions. Additionally I don't know
one tool which fully implements the corresponding standard specifications.
Not a big surprise since the specifications are really complex and extensive.
So, supporting one specific XMI format of one UML tool is not that
complicated (especially since not all features are needed). But I have still
a hard time thinking about an appropriate mapping between all these different
standard versions and the differences how they are implemented in the tools.
Especially since I want to keep these differences away from the normal tool
user. Maybe it will be possible, at least as some compromise. The future will
show.

Best regards,
Anastasios
Apr 28 '07 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

34
by: nobody | last post by:
This article is posted at the request of C.W. Yang who asked me to detail my opinion of Lisp, and for the benefit of people like him, who may find themselves intrigued by this language. The...
17
by: mike | last post by:
hi all - i'm fairly new to python, coming from a java servlet / velocity template background. i'm looking for a good python web development tool, and hope to find some suggestions here. ...
134
by: Joseph Garvin | last post by:
As someone who learned C first, when I came to Python everytime I read about a new feature it was like, "Whoa! I can do that?!" Slicing, dir(), getattr/setattr, the % operator, all of this was very...
7
by: http://vmdd.tech.mylinuxisp.com/catalog/ | last post by:
After having seen my co-worker reinventing the wheel when he busily labored to build MS Access framework, I want to share my perspective. Having experienced with Access, Visual Basic, Visual...
8
by: Brandon J. Van Every | last post by:
I would like to know which libraries commonly employed in conjunction with C# are ISO standards. I have been looking at the standards docs on the ECMA website, and they are not easily understood...
13
by: Akhenaten | last post by:
Just wondering what the gurus like to use for the favorite tools (syntax checkers, etc.). I recently downloaded Rapid PHP and it's obviously better than notepad or vi but I was curious as to what...
4
by: fiversen | last post by:
Hello, I have a site for the collegue with a football winning game. ...fussball.html there I redirect the user to an cgi-page ../f11.cgi
3
by: larry | last post by:
I have been working on a rather large project. And I have been thinking about the structure of how I organize my project apps and libraries. It's intended as a framework type system where you can...
0
by: LinkMemory | last post by:
It is the innovative way of keeping all your Favorite URLs on the web. http://www.linkmemory.com You come across many new websites each day. You forget it as soon as you close your browser. It...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.