Difference between revisions of "User:Dec"

From database24
Jump to navigation Jump to search
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

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>