Reputation: 21
In Sybase PowerDesigner, when designing an UML diagram that takes 2 copies/instances of the same XXXX object (ie. objects), the application adds a number identifier like "XXXX : 2" to that symbol. Is it possible to remove it?
Thanks in advance!
Upvotes: 2
Views: 4239
Reputation: 11
V 16.5
You can do that:
Format...
Content
tabCenter
SectionName
, keep Stereotype
checkedUpvotes: 1
Reputation: 3365
It does not seem to be directly doable.
However, (somewhat tested with 16.0), you can add an Extension to your model, define a computed attribute (type String) on your object type, returning the object name:
%Get% = obj.name
and use Tools > Display Preferences > xxx > Advanced
to modify the symbol contents, and use your computed attribute instead of Name
...
Upvotes: 2