Difference between revisions of "User:Dec"
Jump to navigation
Jump to search
(→To Do) |
|||
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 == | ||
+ | <uml class> | ||
+ | [Customer]+1->*[Order] | ||
+ | [Order]++1-items >*[LineItem] | ||
+ | [Order]-0..1>[PaymentMethod{bg:orange}] | ||
+ | </uml> | ||
+ | |||
+ | <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> | ||
+ | |||
+ | <uml activity> | ||
+ | (start)-><d1>logged in->(Show Dashboard)->|a|->(end) | ||
+ | <d1>not logged in->(Show Login)->|a| | ||
+ | </uml> | ||
+ | |||
+ | <uml usecase> | ||
+ | [Customer]-(Login) | ||
+ | [Customer]-(note: Cust can be registered or not{bg:beige}) | ||
+ | </uml> |
Revision as of 03:24, 28 February 2012
To Do
- OnAction: '=fnc(x,y)'
- Some hints
UML
<uml class> [Customer]+1->*[Order] [Order]++1-items >*[LineItem] [Order]-0..1>[PaymentMethod{bg:orange}] </uml>
<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>
<uml activity> (start)-><d1>logged in->(Show Dashboard)->|a|->(end) <d1>not logged in->(Show Login)->|a| </uml>
<uml usecase> [Customer]-(Login) [Customer]-(note: Cust can be registered or not{bg:beige}) </uml>