Class

A class may contain nested classes, relations, attributes, operations, roles/parts, ports, composite diagrams, extra members and dependencies on packages. The order of the class's sub-items is very important because it is followed by the C++/Java/Php/python/Idl/MySQL generators.

The representation of a class in the browser indicates if the class is abstract or is a template class, furthermore a nested class icon has a reduced size :




A class is the support to define all kinds of class depending on the languages, the stereotype specify what a class is. The way a stereotype is translated for each language is configured and is specified through the generation settings. You can set a default list of stereotypes for the classes and their relations through the edit default stereotype entry of the project's menu.

Some stereotypes have a special meaning for BOUML :

Obviously because you may change the stereotype at any time, it is possible to define for instance a class with an operation and after that to change its stereotype to enum_pattern ... In this case BOUML does nothing, for instance it does not delete itself the operation to help you to come back to a more appropriate stereotype without undesirable modifications.

The extend of the previous stereotypes include C++ and Java and Idl and Python and Php both. This means for instance that you cannot add an operation to an enum_pattern independently of the translation of this stereotype in C++/Java/Php/Python/Idl specified through the generation settings. But it is also possible to have stereotypes with an extend limited to each language through the definition of new stereotypes. For instance, if you define the stereotype eiu which is translated by enum in C++, interface in Java, class in Php and Python and union in IDL through the generation settings, you will have exactly that you want : magic ! isn't it ?

The stereotypes known at each language level by BOUML are :

The class's properties will be exposed below.

Menus

The class menu appearing with a right mouse click on its representation in the browser depend on the stereotype and the artifact association, it is something like these, supposing the class not read-only nor deleted (see also menu in a diagram) :



Menu : add ...

The first entries of the menu allowing to add something may not be present depending of the class's stereotype.

Menu : edit

edit allows to show/modify the class properties. In case the class is read-only, the fields of the dialog are also read-only. Note that for consistency purpose you cannot edit a class while any other edition is made, and while a class is edited all the other editions are impossible.

Class dialog, tab Uml

The tab Uml is a global tab, independent of the language except some information hidden when the stereotype of he class is table :

The proposed stereotypes are the default one specified through the Default stereotypes dialog more the current one (empty here). It is possible to choose into the list or to give a new one, or to empty it.

abstract allows to declare that the class is an abstract class (not instanciable).

active allows to indicate that the class is active, active classes have a special representation

The artifact used to produce the class source code must be chosen in the proposed list or the field may be empty. Obviously a nested class can't have an associated artifact, but a nested class has a visibility.

The description will be generated in the class source code (in case the ${comment} or ${description} macro appears in the class definition) as a comment.

The editor button visible above and associated here to the description, allows to edit the description in an other window, or to call an external editor (for instance Xcoral) specified through the environment dialog. Note that this external editor have to create an own window, its parameter is the pathname of the file containing the description, its execution is done in parallel with BOUML which looks each second at the file contents to get the new definition until the dialog is closed (I do not like very much this polling but this works even QT isn't compiled with the thread support).

The default button visible above associated to the description allows to set the description with a default contain specified through the generation settings. Useful to generate comments compatible Java Doc or Doxygen for instance.

Class dialog, tab Parametrized

The parametrized tab allows to specify the formals of a template / generic class or a template typedef. It is not active when the stereotype of the class is table.

For instance with :

if the class have the default proposed class definition, the C++ class definition (named Dict) is :

template<class V, class K = string> class Dict ... 

As usual the last column do allows to copy/past/cut/insert line and applies on the line where you did the mouse click.

Class dialog, tab Instantiate

The instantiate tab allows to specify the actual of a class inheriting templates classes or a template typedef. It appears only when the edited class inherits or realizes at least a template class. Obviously, a template class may inherit another ones. It is not active when the stereotype of the class is table.

For instance with this definition of Dict :



if the class have the default proposed class definition, the C++ class definition of theredheaded is :

class theredheaded : public Dict<string, string> ... 

the Java class definition is :

class theredheaded extends Dict<String, String> ...

When the class theredheaded is edited only the actuals are editable in the tab Instantiate, both for C++ and Java.

Supposing you have a template class vector and you want to define a vector or boolean as a class, obviously the right definition is not :

class vectorOfBoolean : public vector<bool> {...}

but :

template<> class vector<bool> {...}

To do this you just have to define the class named vector<bool>

However the right way in C++11 is to use a template typedef

As usual the last column do allows to copy/past/cut/insert line and applies on the line where you did the mouse click.

Class dialog, tab C++

This tab allows to give the C++ definition of the class, it is visible only when C++ is set through the Languages menu and the stereotype of the class is not table.

Template definition :

Template instantiation (of course a class may be both a template definition and a template instantiation) :

Template typedef (setting the stereotype of theredheaded to be template_typedef ) :

Enum (class with the stereotype enum or enum_pattern) :

Enum class :

Standard class :

In BOUML the generated code is obtained by the substitution of macros in a text, only the Declaration part is editable, the other one help you to see what will be generated for C++ (supposing you do not modify the C++ code generator !).

When you push the button default declaration, the form specified through the generation settings depending on the class stereotype (and of course the language !) is proposed, this last may be modified as you want, even to produce illegal source code. For instance if you do not want to follow the inheritance specified by the class's relations, you just have to replace ${inherit} by anything you want.

When you do not want to have this class defined in C++ (but it must be defined in Java or Idl, so the class must have an associated artifact), empties the declaration manually or using the button not generated in C++ (an other way is to empty the C++ definition of the artifact).

The external check box must be used when the class must not be defined in C++ by BOUML, but you want to specify the name of the class (to not follow the Uml/Java/Idl name) and/or the included files and/or using forms or any other forms needed to use it.

${template} produce a template declaration in case the class is a template class, else an empty string.

${members} produce the declaration and definition of the class members (relations, attributes, operations and extra members) following the browser order and repartition in the header and source files.

${inline} produce the definition of the operations and extra members declared inline, may be an empty string.

Refer to the generation settings for more details.

The forms @{property} are replaced by the value of the corresponding user property if it is defined for the class or at an upper level, else it is not substituted.

Class dialog, tab Java

This tab allows to give the Java definition of the class, it is visible only when Java is set through the Languages menu and the stereotype of the class is not table

Generic definition :

Generic instantiation :

For a JDK 5 enum (class with the stereotype enum) :

For a class with the Java stereotype enum_pattern :

Standard class :

${public} produce an empty string when the check box public is not checked, else produce public (!)

${final} produce an empty string when the check box final is not checked, else produce final (!!)

The external check box must be used when the class must not be defined in Java by BOUML, but you want to specify the name of the class (to not follow the Uml/C++/Idl name).

${members} produce the declaration of the class members (relations, attributes, operations and extra members) following the browser order, doesn't produce the enumeration items of an enum. In an enum, an attribute is not an enumeration item when its stereotype is attribute.

${items} produces the enumeration items of an enum. an attribute is an enumeration item when its stereotype is not attribute.

${extend} is replaced by the class inheritance

${implement} is replaced by the interface inheritance

${@} produces the annotations, when it is present in the definition the button Edit annotation is active, a specific dialog allows you to enter the annotations proposing the default annotations (Deprecated ...) and the ones defined through the classes stereotyped @interface :

The forms @{property} are replaced by the value of the corresponding user property if it is defined for the class or at an upper level, else it is not substituted.

Class dialog, tab Php

This tab allows to give the Php definition of the class, it is visible only when Php is set through the Languages menu and the stereotype of the class is not table

For an enum (class with the stereotype enum) :

Standard class :

${final} produce an empty string when the check box final is not checked, else produce final (!!)

${abstract} produce an empty string when the check box abstract is not checked, else produce abstract (!!)

The external check box must be used when the class must not be defined in Php by BOUML, but you want to specify the name of the class (to not follow the Uml/C++/Php/Python/Idl name). An optional second line may be given to specify the require_once form to produce in artifact containing classes referencing this external class.

${members} produce the declaration of the class members (relations, attributes, operations and extra members) following the browser order. It also produces the forms use from the generalizations to trait.

${items} produces the enumeration items of an enum. other members are not produced

${extend} is replaced by the class inheritance except from trait

${implement} is replaced by the interface inheritance except from trait

The forms @{property} are replaced by the value of the corresponding user property if it is defined for the class or at an upper level, else it is not substituted.

Class dialog, tab Python

This tab allows to give the Php definition of the class, it is visible only when Php is set through the Languages menu and the stereotype of the class is not table

For an enum (class with the stereotype enum), recall the instance attributes are produced in the operation __init__ :

Standard class :

The Python 2.2 check box allows to ask for classes introduced by Python 2.2, the default value of this toggle is the one specified by the generation settings

The external check box must be used when the class must not be defined in Python by BOUML, but you want to specify the name of the class (to not follow the Uml/C++/Php/Python/Idl name) on the first line (${name} by default), may be followed by import forms whose will be produced by the code generator.

${members} produce the declaration of the class members (relations, attributes, operations, extra members and sub classes) following the browser order. Note that the instance attributes are produced at the beginning of the body of the operation __init__.

${inherit} is replaced by the inheritance, a class without inheritance inherits of object if the toggle Python 2.2 is set

${docstring} is replaced by the description of the class placed between ””” and followed by a newline. If the description is empty nothing is produced. You can replace it by ${comment} or ${description} if you prefer.

The forms @{property} are replaced by the value of the corresponding user property if it is defined for the class or at an upper level, else it is not substituted.

Class dialog, tab Idl

This tab allows to give the Idl definition of the class, it is visible only when Idl is set through the Languages menu and the stereotype of the class is not table

${local} produce an empty string when the check box local is not checked, else produce local (!!), this one is only available when the stereotype of the class is interface in Idl (see generation settings).

${custom} produce an empty string when the check box custom is not checked, else produce custom (!), custom is available when the stereotype of the class is valuetype in Idl (see generation settings).

The external check box must be used when the class must not be defined in Idl by BOUML, but you want to specify the name of the class (to not follow the Uml/C++/Java name) and/or the included files needed to use it. Not yet implemented in the Idl generator.

${members} produce the declaration of the class members (relations, attributes, operations and extra members) following the browser order.

The forms @{property} are replaced by the value of the corresponding user property if it is defined for the class or at an upper level, else it is not substituted.

Class dialog, tab MySQL

This tab allows to give the MySQL definition of the table, it is visible only when MySQL is set through the Languages menu and the stereotype of the class is table

${definition} produce the declaration of the class members (relations supporting the foreign keys and attributes supporting the other keys and columns) following the browser order.

The forms @{property} are replaced by the value of the corresponding user property if it is defined for the class or at an upper level, else it is not substituted.

Menu : duplicate

The menu entry duplicate clone the class and all its children, including the nested classes.

The self relations (a self relation is a relation between a class and itself) are specially managed : they became a self relation to the clone.

For instance, if the initial situation is the following :

After the duplication of C1 into the new class C3 :

Note that the duplication of the relation c1 of C3::SC is still a relation to C1, because only the self relation are specially managed, not all the relation to the duplicated class (the context of the inner class(es) SC is visible thanks to the drawing settingshow context” and also to the inner class relation).

Menu : create source artifact

The menu entry create source artifact is present when the class (not stereotyped table) does not have an associated artifact, but the class view containing the class have an associated deployment view. Choosing this entry a new artifact having the name of the current class and the stereotype source is created in the deployment view associated to the class view containing the current class.

To quickly create if needed the associated deployment view and associate an artifact to all the classes of a class view use the plug-out deploy.

Menu : create database artifact

The menu entry create database artifact is present when the class is stereotyped table does not have an associated artifact, but the class view containing the class have an associated deployment view. Choosing this entry a new artifact having the name of the current class and the stereotype database is created in the deployment view associated to the class view containing the current class.

To quickly create if needed the associated deployment view and associate an artifact to all the classes of a class view use the plug-out deploy.

Menu : select associated artifact

Menu : select associated database

This menu entry is present when the class have an associated artifact, to quickly select this one, the current class may also be quickly selected from its associated artifact.

Menu : select associated component

Menu : select an associated component

This menu entry is present when the class have an associated component(s), to quickly select this one, the current class may also be quickly selected from its associated component.

Menu : referenced by

To know who reference the current class

Menu : mark

See mark

Menu : lock / unlock

It is possible to put a lock on a class or an artifact. A locked element cannot be modified editing it nor roundtriped, and there is no code generation for it. When you put/unput a lock on a class it is also put/unput on its sub classes and on the associated artifact and all the other classes associated to this artifact and their sub classes. When you put/unput a lock on an artifact it is also put/unput on the associated classes and their sub classes. It is also possible to put/unput locks recursively from a package, a class view and a deployment view.

Menu : delete

The menu entry delete is only present when the class is not read-only.

Delete the class and all its children, and all the representation of them in the opened diagrams. After that it is possible to undelete them (from the browser) until you close the project : obviously the deleted items are not saved !

Menu : generate

To generate source code for the languages for whose the class and the associated artifact have a definition.

Menu : tool

The menu entry tool is only present in case at least a plug-out may be applied on a class. The selected tool is called and applied on the current class.

Default stereotypes

The dialog allowing to set the default stereotypes has a tab reserved for the classes :

As you can see, it is possible to set a default stereotypes list for the classes and all the relations between classes.

The code generators does not distinguish the generalization and the realization, even they do not have the same meaning in UML.

Generation settings

This very important dialog allows to specify many default definitions concerning the classes, more details will be given in C++ generator, Java generator, Php generator, Python generator, Idl generator and MySql generator.

The tabs associated to a given language are only visible when the corresponding language is set through the Languages menu.

The tab Stereotypes allows to specify how the class's stereotypes are translated in each language (except MySQL) :

The second C++ tab allows to define the default C++ class definition depending on the stereotype :

The first Java tab allows to define the default Java class definition depending on the stereotype :

The first Php tab allows to define the default Php class definition depending on the stereotype :

The first Python tab allows to define the default Python class definition depending on the stereotype, and to use Python 2.2 classes or not by default :

The first Idl tab allows to define the default Idl class definition depending on the stereotype :

The MySQL tab allows to define the default MySQL class definition (stereotyped table) :

The tab Description allows to set a default description (the default description is used when you hit the button default in the description part of a class of the class dialog) :

Drawing

A class is drawn in a diagram as a rectangle or an icon depending on the class's stereotype and the drawing settings :

If the class is stereotyped by a stereotype part of a profile and this stereotype has an associated icon, this icon will be used when the drawing mode is natural, the image is unchanged when the scale is 100% else it is resized.

There are lot of drawing settings to allow you to decide what must be shown or not and how. Here an example where the attribute and operation compartments are hidden and the composite structure is shown, the class use an horizontal gradient to color it contrarilly to the parts :

A right mouse click on a class in a diagram calls the following menu (supposing the class editable) :

Menu : add related elements

To add elements having a relation with the current element, the following dialog is shown :

Menu : hide composite diagram

Only present when the class already show one of its composite diagram.

Menu : show composite diagram

Only present when the class has at least a composite diagram. When you show a composite diagram into the class representation this one is duplicated except the fragments (a priori is used to indicate whose class is described) and nothing appends if you delete the original composite diagram or change it. Use this entry to update the composite diagram in the class or change it by an other.

Menu : show nesting relation

Only present when the class is nested and its container class present but the nesting relation is not shown because draw all relation is set to false, allows to show the nesting relation.

Menu : edit drawing settings

These drawing settings concerns only the picture for which the menu is called.

A settings valuing default indicates that the setting specified in the upper level (here the diagram) must be followed, obviously this one may also be default ... up to the project level. When you add a class in a diagram, all the settings are set to default.



drawing language :

Allows to choose how the operations and attributes of the class must be written in case show full members definition is true (at the class level or an upper level), this may hide an operation or an attribute when it is not defined for the chosen language.

For instance, the class C has the attribute a having the type uchar (supposed translated unsigned char in C++, char in Java and octet in Idl), the operation op returning an uchar and having the input parameter p having the type uchar and only in Idl a second out parameter p2 of the same type. The C picture is, depending on the drawing language :

drawing mode :

Allows to draw the class using a rectangle or an icon :

show context :

To indicate if the context where the class is defined must be written, and if yes, how. The context may be the "UML context" which is the path of the class in the browser, or the C++ or Php namespace, or the Java package or at least the Idl module. In case the class has an associated artifact, the namespace/package/module is the one specified by the package containing the artifact, else by the package containing the class itself. Obviously nothing is written in case the namespace/package/module is not specified.

For instance, the package Package2 specify the C++ / Php namespace nsp, the Java package jpck, the python package ppck and the Idl module mdl. The C picture is, depending on the show context :

UML

C++ / Php namespace

Java package

Python package

Idl module



hide attributes :

To hide or not the attributes, it is also possible to specify the visibility for each one.

hide operations :

To hide or not the operations, it is also possible to specify the visibility for each one.

hide get/set operations :

To hide or not the 'official' getter and setter operations

hide ports :

To hide or not the ports.

show full members definition :

To write all the attribute/operation definitions, or just their names. See also drawing language.

In case of a MySQL table when this option is set the keys are also show in the class :

without the option :

with the option :

show members visibility :

To write or not the visibility

show members stereotype :

To write or not the stereotype

show context in members definition :

to write or not the context of classes indicated in the full member definitions

show attributes multiplicity :

To write or not the multiplicity of the attributes when the drawing language is UML and you ask to show for full members definition, in case of a MySQL table this writes the size

show attributes initialization :

To write or not the default value of the attributes/columns when you ask to show for full members definition

show attributes modifiers :

To write or not the modifiers when you ask to show for full members definition, except for the / indicating the attribute is derived which is written even you don't ask for the full members definition

member max width :

To limit the width (in characters) used to produce the definition of the operations and attributes. When the width is greater that the max width, the string is cut and ... is added. Doesn't take into account the stereotype.

show parameter direction :

To write or not the direction of the operation's parameters

show parameter name :

To write or not the name of the operation's parameters

show information note :

To show or not the constraints as a note. This note is able to contain the constraints of the class itself, the constraints of its members and the inherited constraints. To choose which constraint must be written, edit the node and a dedicated dialog will appears :

show stereotype properties :

to indicate through a note the (non empty) value of the stereotype properties in case the class is stereotyped by a stereotype part of a profile. By default the stereotype properties are hidden.

class color :

To specify the fill color. Note you can also specify a gradient at the diagram level or an upper level, the gradient can be done in diagonal, horizontal or vertical :

Menu : custom drawing settings :

To save the drawing settings used for the class through the sub menu entry save as, or to apply an already saved custom drawing setting to the class or selected classes from the proposed list in the sub menu.

Menu : individual attribute visibility :

To specify the hidden / written attributes of the class through the following dialog :

If you set specify visible members rather than hidden ones, when you will add new attributes these ones will not be added in the class picture.

Menu : individual operation visibility :

To specify the hidden / written operations of the class through the following dialog :

If you set specify visible members rather than hidden ones, when you will add new operations these ones will not be added in the class picture.

Menu : set associated diagram

set associated diagram allows to automatically open the current diagram when a double mouse click is made on the class representation in a diagram or the browser. After that the only way to edit the class is to choose the edit entry in the menu.

Menu tools :

Appears only when at least one plug-out is associated to the classes. To apply a plug-out on the class.

Previous : use case

Next : relation