Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor changes #476

Merged
merged 16 commits into from
Oct 26, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions documentation/IDTA-01001/modules/ROOT/pages/annex/uml.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -399,15 +399,21 @@ include::partial$diagrams/uml-basics/85-experimental-classes.puml[]
....


<<image-86-deprecated-elements>> depicts a deprecated class, which is marked by the stereotype "Deprecated".
<<imgae-deprecated-class>> depicts a deprecated class, which is marked by the stereotype "Deprecated" whereas <<imgae-deprecated-attribute>> depicts a deprecated attribute within a class.

.Graphical Representation for Deprecated Elements
[[image-86-deprecated-elements]]
[plantuml, 86-deprecated-elements, svg]
.Graphical Representation for Deprecated Class
[[image-deprecated-class]]
[plantuml, deprecated-class, svg]
....
include::partial$diagrams/uml-basics/86-deprecated-elements.puml[]
include::partial$diagrams/uml-basics/deprecated-class.puml[]
....

.Graphical Representation for Deprecated Attribute
[[image-deprecated-attribute]]
[plantuml, deprecated-attribute, svg]
....
include::partial$diagrams/uml-basics/deprecated-attribute.puml[]
....

<<image-87-template-class>> shows a class representing a template.
It is marked by the stereotype "Template".
Expand Down
1 change: 1 addition & 0 deletions documentation/IDTA-01001/modules/ROOT/pages/changelog.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ Minor Changes:
* update information on AutomationML mapping (https://github.com/admin-shell-io/aas-specs/issues/397[#397])
* update bibliography (newer versions, link update, removal of entries not referenced)
* consistent usage of idShortPath and IRDI-Path (https://github.com/admin-shell-io/aas-specs/issues/385[#385])
* add example for deprecated attribute in class in Annex UML
* editorial changes


Expand Down
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we also remove numeration from other uml-basics PUML-files?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, I was wrong, it is better without numbering

Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
@startuml
!theme idta from https://raw.githubusercontent.com/admin-shell-io/aas-specs-antora/main/plantuml/


class Class1 {
+attr: Class2 <<Deprecated>>
}

@enduml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@startuml
!theme idta from https://raw.githubusercontent.com/admin-shell-io/aas-specs-antora/main/plantuml/


class Class1 <<Deprecated>>

@enduml