Click here to Skip to main content
15,886,774 members
Please Sign up or sign in to vote.
3.00/5 (2 votes)
See more:
How to define an abstract property in UML class diagram design of Visual Studio 2012?
Posted
Updated 9-Oct-12 20:37pm
v2

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


if u consider the below as class diagram in UML using Rational Rose Software
-----------------------------------
|           <<abstract>>          |
|             MyClass             |
-----------------------------------
|<<property>> + a : int           |
|<<property>> + b : string        |
-----------------------------------
|<<abstract>> # Job() : void      |
|<<abstract>> # Job2() : string   |
|- SomeNonAbstractMethod() : void |
-----------------------------------

the Abstract Property will be specified as above
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900