Mohsen Alikhani
Mohsen Alikhani

Reputation: 1666

Adding an abstract property to UML class diagrams using Visual Studio 2012 RTM

How does one add an abstract property in UML class diagram using Visual Studio 2012 RTM?

Upvotes: 3

Views: 1053

Answers (2)

Harry
Harry

Reputation: 75

You must track the following steps :

  1. Define a profile to extend UML :

    http://msdn.microsoft.com/en-us/library/dd465145.aspx

  2. Add stereotypes to model elements :

    http://msdn.microsoft.com/en-us/library/dd465145.aspx

  3. Customize your model with profiles and stereotypes :

Upvotes: 3

Mohsen Alikhani
Mohsen Alikhani

Reputation: 1666

I think that it's not possible to define an abstract property in UML class diagram of VS 2012 RTM. Instead of it, you must add an interface that's contains the property and all favorite classes implement it.

Upvotes: 1

Related Questions