Difference between revisions of "User:Dec"
Jump to navigation
Jump to search
(→To Do) |
(→UML) |
||
(One intermediate revision by the same user not shown) | |||
Line 2: | Line 2: | ||
* OnAction: '=fnc(x,y)' | * OnAction: '=fnc(x,y)' | ||
* [http://www.armin-hoepfl.de/access.html Some hints] | * [http://www.armin-hoepfl.de/access.html Some hints] | ||
+ | |||
+ | == UML == | ||
+ | |||
+ | === Class === | ||
+ | <uml class> | ||
+ | [Customer]+1->*[Order] | ||
+ | [Order]++1-items >*[LineItem] | ||
+ | [Order]-0..1>[PaymentMethod{bg:orange}] | ||
+ | </uml> | ||
+ | |||
+ | === Sequence === | ||
+ | <uml sequence> | ||
+ | Janice->Greg: Status Request | ||
+ | alt normal case | ||
+ | Greg->Janice: Everything's fine | ||
+ | else exceptional case | ||
+ | Greg->Janice: Things are out of sync | ||
+ | note right of Greg: Greg clears the cache | ||
+ | end | ||
+ | </uml> | ||
+ | |||
+ | === Activity === | ||
+ | <uml activity> | ||
+ | (start)-><d1>logged in->(Show Dashboard)->|a|->(end) | ||
+ | <d1>not logged in->(Show Login)->|a| | ||
+ | </uml> | ||
+ | |||
+ | === Usecase === | ||
+ | <uml usecase> | ||
+ | [Customer]-(Login) | ||
+ | [Customer]-(note: Cust can be registered or not{bg:beige}) | ||
+ | </uml> |
Latest revision as of 20:50, 29 April 2016
To Do
- OnAction: '=fnc(x,y)'
- Some hints
UML
Class
<uml class> [Customer]+1->*[Order] [Order]++1-items >*[LineItem] [Order]-0..1>[PaymentMethod{bg:orange}] </uml>
Sequence
<uml sequence> Janice->Greg: Status Request alt normal case
Greg->Janice: Everything's fine
else exceptional case
Greg->Janice: Things are out of sync note right of Greg: Greg clears the cache
end </uml>
Activity
<uml activity> (start)-><d1>logged in->(Show Dashboard)->|a|->(end) <d1>not logged in->(Show Login)->|a| </uml>
Usecase
<uml usecase> [Customer]-(Login) [Customer]-(note: Cust can be registered or not{bg:beige}) </uml>