[[Property:title|Notation]]
[[Property:weight|1]]
[[Property:uuid|615baff7-4dbe-2f2f-9a02-c05b20143478]]
The diagram tool uses the [http://bon-method.com BON] (Business Object Notation) to represent Eiffel systems. This article will give a summary of all components of an EiffelStudio diagram. For detailed information on BON, please read [http://bon-method.com/book.htm Seamless Object-Oriented Software Architecture] by Kim Walden and Jean-MarcNerson, Prentice Hall 1994.
==Class==
[[Image:bon-class]]
A class is represented by an ellipse(sometimes referred to as ''bubble''). It contains the class name and formal generics of the Eiffel class it represents. Second, it displays information about properties of a class. These properties are:
* Deferred: class is declared as deferred
.
[[Image:bon-class-deferred]]
* Effective: class is not deferred
and has at least one deferred
parent, or redefines one ore more features.
[[Image:bon-class-effective]]
* Persistent: class inherits persistent
.
[[Image:bon-class-persistent]]
* Interfaced: class has one ore more external
features.
[[Image:bon-class-interfaced]]
* Reused: class resides in a precompiled library or in a library
cluster.
[[Image:bon-class-reused]]
* Root class: class has the program's entry point.
[[Image:bon-class-root]]
{{seealso|
[[Rename Class|Changing class names]] }}
==Cluster==
A cluster is a collection of classes and sub-clusters. It is represented by a stippled, rounded rectangle. The cluster name is in a similar rectangle, by default located at the top of the cluster just outside of it.
[[Image:bon-cluster]]
A cluster can be iconified, which means it is minimized to take up as less space as possible.
[[Image:bon-cluster-iconified]]
{{seealso|
[[Iconifying and restoring a cluster|Iconifying a cluster]] }}
==Inheritance links==
Inheritance between classes is represented by an arrow from a class to its parent. Typically, inheritance links point upwards.
expanded
features. In the diagram, an aggregate link has a little line along the back side of the arrow.
[[Image:bon-agg-client]]
{{seealso|