vote up 0 vote down star

Hello!

I had some questions regarding the structure and behavior of a model, using UML, and the relationship between the two :

  1. Did you find any limitations for UML regarding the specification or understanding of the relationship between structure and behavior?
  2. I was wondering if you have any practical ideas of how one can optimize the relationship between structure and behavior, using UML.
  3. Do you know any UML tools that help understand better this relationship or represent it much easier?

Thanks

flag

69% accept rate

3 Answers

vote up 1 vote down check
  1. Yes:

    • A sequence diagram is readable at a high level, showing how a transaction involves a few components; but it's not good (not readable) at the detailed level, showing how a transaction involves dozens of methods (method A calls method B, which gets data from methods D and E, and then invokes method F, etc.).

    • Looking at a class diagram, you might see a based class with several subclasses; this tells you nearly nothing about the behaviour of the classes (it only tells you that they may have some behaviour in common, or at least a common API, plus some individual behaior that's unique to each subclass).

  2. That's a big question. A quick answer is, "Attach text notes to the objects: diagrams aren't sufficient without descriptive text."

  3. No, I don't really; a UML tool help you create UML diagrams (and generate code from the diagrams), but it's up to you how you use it. There was a neat product described in the book titled Real-Time Object-Oriented Modeling (1994) which was an executable model, i.e. the model itself had behaviour, but I know of no UML tool quite like that. The closest I know of is being able to "round trip" between the model and code (i.e. generate code from the model, and the model from code).

link|flag
vote up 0 vote down

UML allows you to specify the signature of a method, and group methods into classes, but it says nothing at all about what code you use as implementation. If that's what you mean by "behavior", I don't think UML addresses it at all at the class level.

It's even worse at the UI level. My impression of UML is that it's woefully inadequate for specifying UIs.

I think the effort required to embed everything into UML is greater than or equal to coding the application, with the added burdens of UML tools being poor IDEs and inability to prove correctness of UML the way you can with unit testing.

UML is way oversold, IMO. I consider it a convenient notation for informal communication between developers, nothing more. It has never been and never will be the object oriented equivalent of engineering drawings.

link|flag
In some environments (e.g. medical devices) you may need to document how the required functionality has been implemented. In this case maybe UML is a useful documentation tool (between requirements and code), and round-tripping the UML is a good way to ensure that the model is in synch with the actual code. – ChrisW Jul 8 at 21:42
Yes, but that still doesn't put the meat of the method into the UML. You just get to update classes and method signatures. Round-tripping after the fact is just a documentation aid. The real work is writing and debugging the software. I still never see what UML is accomplishing for you once you're scoped out the problem. – duffymo Jul 8 at 22:04
Yes I haven't found UML useful for writing method implementations: writing method implementations as source code is quicker, and more compact. Still UML is good for visualizing levels of detail above that: in source code for example I'm usually seeing, at best, one class at a time (so UML might be better than source code at showing the architecture and the various interrelations between classes). – ChrisW Jul 8 at 23:08
I agree, but I think it's small scale stuff, with maybe a dozen classes, that you can easily fit on an 8.5x11 sheet of paper. A piece of paper or whiteboard, without the tool and all the fancy stuff, would do just as well. Who REALLY uses sequence diagrams? State diagrams? Yes. Activity diagrams? Yes, with swim lanes. But beyond that you'll have a hard time selling me. – duffymo Jul 8 at 23:14
Instead of only a dozen classes, you can have a dozen assemblies or components, each with a dozen classes: so, multi-layered, with the ability to "drill down" into any one thing on the diagram (to see more detail in a sub-diagram of that one thing). I think it's useful, close to the way that people think and communicate (there are so many types of diagram that at least one of them might be capable of expressing what you want to express), and although people have such design ideas it's just that people don't usually bother to capture them (as maintainable UML) into the permanent documentation. – ChrisW Jul 8 at 23:26
show 5 more comments
vote up 0 vote down

Sounds like a homework problem. Wiki can tell you all about UML.

The limitations of UML are the same as any form of communication. The simpler your language, the fewer things you can communicate and the clearer your communications will become. A shape like a square or circle identifies a structure, a line indicates relationship, an arrow indicates movement, or flow. You could enhance this by defining the meaning of other properties, like direction, boldness, color, number count, different shapes. You could incorporate multimedia layers like audio or video, motion, tooltips- but now we're not talking about UML anymore.

My favorite UML tools are a whiteboard and some dry erase markers.

link|flag
Thanks, I am familiar to UML and I use it in my projects. I actually wanted to see some practical limitations that come out from the others' experience, not just theory (which is just what wiki offers) – melculetz Jul 8 at 21:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.