From 186fb03048af6adf6caee3e3ab61e4c8688f8dff Mon Sep 17 00:00:00 2001 From: Xavier Stouder Date: Thu, 26 Aug 2021 11:42:11 +0200 Subject: [PATCH] doc: add static field notice --- docs/classDiagram.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/classDiagram.md b/docs/classDiagram.md index 2d7427739..61b2ce591 100644 --- a/docs/classDiagram.md +++ b/docs/classDiagram.md @@ -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.