User:Magodra: Difference between revisions

From PSwiki
Jump to navigation Jump to search
Magodra (talk | contribs)
No edit summary
Magodra (talk | contribs)
 
Line 1: Line 1:
== My UML test suff ==
== My UML test suff ==
Using the PlantUML [http://www.mediawiki.org/wiki/Extension:PlantUML] extention to generate uml code. See the PlantUML [http://plantuml.sourceforge.net/index.html] web page for detailes on syntax.
Using the PlantUML [http://www.mediawiki.org/wiki/Extension:PlantUML] extention to generate uml code. See the PlantUML [http://plantuml.sourceforge.net/index.html] web page for detailes on syntax. See the [[UML]] page for how to use [[UML]] for design.
=== Classes ===
<nowiki><uml></nowiki>
PSClient .. PSServer
PSServer .right. NPCClient
<nowiki></uml></nowiki>
 
<uml>
PSClient .. PSServer
PSServer .right. NPCClient
</uml>
 
=== Sequence diagrams ===
<nowiki><uml></nowiki>
NPCClient-\\PSServer : NPCAuthent
NPCClient//-PSServer : MSGStrings
<nowiki></uml></nowiki>
 
<uml>
NPCClient-\\PSServer : NPCAuthent
NPCClient//-PSServer : MSGStrings
</uml>
 
=== Use Cases ===
<nowiki><uml></nowiki>
:User: -> (Login)
<nowiki></uml></nowiki>
 
<uml>
:User: -> (Login)
</uml>

Latest revision as of 14:20, 22 December 2013

My UML test suff

Using the PlantUML [1] extention to generate uml code. See the PlantUML [2] web page for detailes on syntax. See the UML page for how to use UML for design.