doc: add static field notice

This commit is contained in:
Xavier Stouder
2021-08-26 11:42:11 +02:00
parent 8db827e429
commit 186fb03048

View File

@@ -228,10 +228,14 @@ To specify the visibility of a class member (i.e. any attribute or method), thes
- `~` Package/Internal
> _note_ you can also include additional _classifiers_ to a method definition by adding the following notations to the end of the method, i.e.: after the `()`:
> - `*` Abstract e.g.: `someAbstractMethod()*`
> - `$` Static e.g.: `someStaticMethod()$`
> _note_ you can also include additional _classifiers_ to a field definition by adding the following notations to the end of the field name:
> - `*` Static e.g.: `String someField$`
## Defining Relationship
A relationship is a general term covering the specific types of logical connections found on class and object diagrams.