vote up 14 vote down star
3

Few years back everybody in our shop was crazy with UML. Now everybody seems to have cooled off.

I am curious if there is still widespread use of UML in software projects.

If so, is this usage limited to whiteboarding? Do you use it for documentation? Do you use tools to generate code from it?

Related:

Is UML Practical?

flag

16 Answers

vote up 9 vote down

I think agile flavor of UML (e.g. quick white board sketch) is quite successful than the waterfall flavor of UML (e.g. elaborate diagram with all gory detail for documentation, code generation, etc to make the document savvy managers happy. Oops sorry I got carried away a bit there. :)

UML is still quite useful to explain a design to someone else. I wonder how would you teach someone composite pattern without a simple class diagram (that is, after you are done with those interesting analogies).

Even when doing solo, if I had to understand a project with classes littered all over the place and with no good enough documentation, a few hand-drawn class diagrams and sequence diagrams really would get me going.

We are also quite successfully using UML for our database schema. 'Are there any better ways?' would be separate question.

link|flag
vote up 8 vote down

I have always used UML (or UML ispired) graphics as supporting documentation. The documents provide a slice in time such as "this was our original concept of a user". Keeping documents up to date is hard and would only be done if we need to change the our definition. Then we have another snap shot in time. UML was not the design but part of the design process.

I have used some code generating tools that used UML but only to generate initial stubs. Usually once the code was generated, it evolved seperately from the diagram.

One problem with UML was that in many cases arguements broke out about proper UML syntax/style instead of concentrating on whether the drawing helped the customer, analyst or developer understand the concept. I know syntax is important when code generating, but I found UML is best used to understand a concept.

link|flag
vote up 6 vote down

See SO: Is UML practical? for some more responses on the topic. It seems to be that UML is still useful for communicating concepts and systems. People seem to use it as a description, rather than a definition. If you separate UML from the implementation itself, you'll run into trouble keeping the two in sync.

link|flag
vote up 5 vote down

I use UML for initial designs and as an aid to discussion when talking to other developers. But, beyond initial design, the time spent trying to keep UML up to date is not worth the effort.

link|flag
vote up 2 vote down

I've seen generated UML used to help new hires get a handle on what was a very involved and complex system. Since the UML was automatically generated from the code it was always up-to-date and some people found it helpful.

link|flag
I find generate UML mostly useless. It is so detailed that the code itself is just as accessible. The most valuable UML is the higher level abstractions, and those can be created only by humans. – Chris Noe Sep 25 '08 at 12:09
ya, those are valuable right up until they get out of date, 5 minutes after the development part of the project starts. Being able to see how code interacts in a single place had definite advantages over browsing many levels of object hierarchy. – tloach Sep 25 '08 at 12:35
vote up 2 vote down

I actually use UML to help me visualize and think through problems. For this purpose, sequence diagrams, activity diagrams and object diagrams are very useful.

Component diagrams are good when you're trying to communicate the software layers.

Deployment diagrams are very useful for figuring out packaging and deployment, as well as inter-node communication paths.

Class diagrams I find least useful, since most IDEs can give you the as-built class hierarchy quite easily.

link|flag
vote up 1 vote down

UML is dead, dead, dead: Is UML Really Dead, Or Only Cataleptic?

Whiteboarding/Documentation are ok. Generating code from it? Who needs that and for what?

link|flag
Generating documentation from code is useful because it ensures your documentation stays in sync with the code. Doxygen is a good example of a useful way to generate docs from code. – Ben Collins Sep 19 '08 at 19:37
vote up 1 vote down

I use UML in discussions with other developers. I often think to myself that I'm more successful in relaying information to other people via pictures, so I'll draw a class diagram or an activity diagram on a whiteboard when brainstorming with the rest of the team. Other members can draw and modify it, and once we all know what we're talking about, we tend to just roll with it. We didn't bother with generating code directly from it (partly because our tools were awful) but on the other hand we may have felt more constrained if we did. Those designs changed a LOT since the whiteboarding....

link|flag
vote up 0 vote down

i use it for use-case diagramming. not much else though.

link|flag
vote up 0 vote down

I use UML for initial designs as well. After doing the reqs phase and the use cases (both in UML and textual form), the basic system is laid out as a component diagram to identify single components, the interfaces as well as subsystems.

link|flag
vote up 0 vote down

We use UML class diagrams only for some scratching mostly at the beginning of projects, but also when explaining our own code to other developers. But this is only sratching, not to document our software.

To my mind it is much talked about UML (by people, magazines), but not quite so many people really use it.

link|flag
vote up 0 vote down

If you use Agile you should be using UML.

Modeling is important. If is of course more fun to get writing code, however you waste allot of time and have no idea if you are meting the customer requirements. You model to understand the problem you are being asked to solve, and speed up development time, and ship a useful product to your customers.

Save gold plating for the overpriced Monster cables.

link|flag
vote up 0 vote down

We still use UML. Like others here, I find that they greatly aid in communication. It's a lot easier for people to communicate when they have visual aids (enter the popularity of PowerPoint). This is especially true in the initial phases of a project where scenarios like firebird84 explained happen a lot. The painstaking side to UML is the upkeep of the diagrams once the developers on the project start coding.

We don't generate code off of them though and I've yet to personally speak to someone that has used UML to that extent.

link|flag
vote up 0 vote down

I've decided I like the Cockburn style usecases as described by Fowler in his book entitled "UML Distilled." I like them enough that I devised an experimental way to embed them directly into C# namespaces.

By doing this I could encode business or UI logic in terms of the use cases' English language content for free without having to write any kind of domain specific language. The most immediate benefit was that I improved the code readability (albiet in a very new and esoteric kind of way). It is still an experimental approach. However, I believe it could be useful.

Here is the link to a question I posted while trying to find other ways to do what I did.

link|flag
vote up 0 vote down

I use class diagrams on a daily basis to discuss the model, both objects and schemas. This really throws DBAs off, until you point out that you can derive an ERD from a class diagram by sliding all the arrows the to the other end of the lines... The arrows still point in the same direction mind you. There, now it depicts an FK.

There are plenty of structural and semantic details that differ between the two types of diagrams, but the arrow conversion seems to clear the mental block.

link|flag
vote up -2 vote down

If you have to ask, well...... there's your answer.

link|flag

Your Answer

Get an OpenID
or

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