uml

implements in UML

Any idea how I express 'implements' in UML? I'm trying to write some actionscript classes in starUML with the help of this handy little template tool: http://blog.flashmech.net/2008/09/generate-actionscript-3-with-staruml/ I want the tool to generate 'implements Iblah' in the classes but am not sure what connector to use, Aggregation? D...

Online UML Guide

My software design experience only goes as far as SSADM with C, so when I started Java I knew I'd have to learn UML somewhere along the line, but alas, now that I need to use it I don't know much of it. The only book I have on the subject is strictly a Systems Analysis book and much of it is complete overkill for what I need; a simple in...

ORM/MDA/UML tool for VB6

I know of Rational Rose and we have got Rational Rose 6. But I am looking for some other tools which are more usable, which do not complain that they are not running in Windows 98/2000 (when installed and run in WinXP) and has got better features as compared to Rational Rose 6. ...

Teaching systems analysis and design - how much programming experience is needed?

I teach a one semester University course in systems analysis and design. Topics include design patterns, UML, OOP, software development lifecycles, and the history, benefits and drawbacks of various methodologies (such as Agile/SCRUM/BDUF/Waterfall.) Students who enter the course should have some exposure to programming, but in reality ...

Good free UML tool for Java/Eclipse?

I'm looking for a free and easy-to-use UML diagramming tool for Java. In particular I'd looking for something that would integrate with Eclipse, as most of my codebase is in Eclipse. Any recommendations? ...

PHP UML Generator

How do I generate UML diagram based on existing classes in PHP? ...

Ordering class diagram operations in netbeans

Is there a way to specify the order in which operations within a class appear in a netbeans UML class diagram? ...

Generating UML from C++ code?

Is there a tool that can parse C++ files within a project and generate UML from it? ...

UML class diagram association - how, when and why?

I usually get so confused with UML and this situation is no different. Let's say I have an interface IAnimal, class Food and Cat: interface IAnimal { void Feed(Food food); } class Cat : IAnimal { void Feed(Food food) { //code } } I've got 3 questions about drawing UML class diagram for these 3 elements: I assu...

Uml class diagram enum

Hi I am modeling a class diagram. An attribute of a class is an enumeration. How do i model this? Normally you do something like this: - name : string But how to do this with an enum? Thnx in advance :) ...

How to show asynchronous operations on UML Activity diagram

I am about to draw/document for some client-server connection establishing code to better understand it. There are several operations that are done asynchronously in separate threads (connecting threads, data receiving threads, etc). Should I show them on separate diagrams? I would prefer to have it on a single diagram to grasp overall ...

What does the '#' symbol mean in a UML class diagram?

I was reading Algorithms in a Nutshell (O'Reilly) and came across this symbol in a class diagram. My guess is that it means the member is protected, but I wanted to see if anyone knows for sure what it means. ...

Do you use UML diagrams to aid your development process?

So what are the UML diagrams (if any) Stackoverflow has been using for documentation and/or for communication with developers? From what I see, Stackoverflow is something original that also provides rich user experience. Just wondering what does it take (what helps) to realize a great thought into real life? I`m just a student graduati...

uml class diagram web service

Hi How do i draw in UML a class that is using a web service? Thnx :) ...

Can Visual Studio 2005 Pro generate UML style class diagrams?

Can Visual Studio 2005 Pro generate UML style class diagrams? ...

Is there a way to draw UML in Visio for Java?

I have Visio2007 and I really like it. However, it doesn't seem to have UML model/datatypes for Java. Is there some template I can download for Java? Or should I just forget about Visio altogether and get an Elipse plugin? Thanks! ...

What is the best alternative to Microsoft Visio for UML diagramming?

I need to make some UML diagrams. What is the best alternative on both Windows and OS X? ...

Use Case Diagrams - Are arrows absolutely necessary?

Is it absolutely necessary to use "arrows" to show association between an actor and a use case in a use case diagram? I recently had to draw one for my Software Engineering assignment. But after doing a bit of research online on many articles, papers, online books and lecture notes from numerous other universities, it seemed that majori...

What resources do you recommend, in order to learn use case driven development ?

Hello! What resources do you recommend, in order to learn use case driven development ? ...

How to represent a C# property in UML?

Not quite an Attribute, not quite a Method. Stereotypes? <<get>> <<set>>? I'm retro-modelling an existing system, so I need to clearly reflect that this is not the same as a readonly field or a methods pair (regardless of what the IL says), so I think I'll go with the stereotype, but I'll accept the language independant get set_ as a ...