We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0fbbb84 + 2f7e2a4 commit 7a7d99bCopy full SHA for 7a7d99b
1 file changed
source/uml/cla/Article.txt
@@ -0,0 +1,18 @@
1
+Article <|-- Book
2
+
3
+class Article{
4
+ <<Abstract>>
5
+ + «property» Id: string
6
+ - price: decimal
7
+ + SetPrice(priceP: decimal)
8
+ + GetPrice() decimal
9
+ + Article(idP: string, priceP: decimal)
10
+ + ShippingCosts() decimal*
11
+}
12
13
+class Book{
14
+ + «property» Title: string
15
+ + Book(idP: string, priceP: decimal, titleP: string)
16
+ + ShippingCosts() decimal
17
18
0 commit comments