vote up 1 vote down star
1

This one has me stumped regularly while creating top level class diagrams for documentation. Methods and attributes/fields are easy to model. I usually end up adding a method named EvChanged to indicate a .Net event Changed.

What is the right way to show that a type publishes a specific event?

flag

44% accept rate

4 Answers

vote up -1 vote down

Not the type of answer that I like to give, but Microsoft has an answer on the Office website.

link|flag
Visio has some kind of events at the "package" level. A package can contain multiple classes.. each of which can contain multiple events potentially. This link doesn't seem to correspond to a representation of .Net events. – Gishu Sep 10 '08 at 7:19
vote up 1 vote down

I find onEventName() the easiest naming scheme for event callbacks, but how to indicate which events an object can broadcast I've not found any solution. An extended UML class diagram that would allow for customized containers (besides the attribute and method contrainers) could be an alternative, if some tool would support it.

link|flag
vote up 1 vote down

I don't think there is any specific UML notation for showing events that a Class can broadcast. To show events that a Class can receive, you want a Reception element. This has a similar notation to an Operation, with the «signal» keyword.

link|flag
vote up 1 vote down

Just add an «event» stereotype to a classifier attribute.

link|flag

Your Answer

Get an OpenID
or

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