Class visibility is an important part of object design. I have not seen any example diagrams showing non-public classes in several UML books, nor have I seen a way to show class visibility in Enterprise Architect, among other tools. Enterprise Architect and other tools allow you to set the class visibility in the metamodel, but I have yet to see a way to show this in the diagrams.

link|improve this question
I don't think UML standard provides specific notation for visibility, because it's a language dependent feature. – Heisenbug Nov 6 '11 at 22:53
Thanks @Heisenbug. I was able to see class visibility on the Enterprise Architect package diagrams. That may be the only way to see it in this particular tool. My next step is to review the relevant part of the UML spec. – Kevin Stephenson Nov 6 '11 at 23:17
1  
I am reasonably certain that a package diagram is indeed the only way to see element visibility (aka Scope) in Enterprise Architect. I won't post it as an answer since you already did the detective work, but please consider doing so yourself (and marking the question answered) for future searchers. – Uffe Nov 14 '11 at 8:53
feedback

2 Answers

In Eclipse you have the visibility in the icon. I mean that you have a green class icon and if private then a p is put on the top. This icon is also visible in the class diagram if you select the option. Hope this help.

link|improve this answer
feedback

UML supports visibility in a programming language-neutral way, both in the metamodel and in representation.

There's an Enumeration named VisbilityKind that is used in various places (see the UML 2.3 superstructure spec section 7.3.5.5 p142).

On class diagrams there are various ways to illustrate visibility. The most common is to use '-' to represent private features and '+' to represent public. For example:

----------------------------
| Class                    |
|--------------------------|
| +publicAttribute: Type   |
| -privateAttribute: Type  |
|--------------------------|
| +publicMethod()          |
| -privateMethod()         |
----------------------------

See figure 7.28 / 7.29 on p52 of the spec for more examples.

hth.

link|improve this answer
Your answer pertains to class-member-visibility, not to the visibility of the class itself. – Björn Pollex Jan 10 at 7:53
feedback

Your Answer

 
or
required, but never shown

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