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.
feedback
|
|
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. | |||
|
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:
See figure 7.28 / 7.29 on p52 of the spec for more examples. hth. | |||
feedback
|