|
Post by rubina9898 on Dec 21, 2023 3:57:26 GMT
The type of diagram I use most often. This type of diagram is so generic that it can be used to document the structure of algorithms applications and entire systems. Flowcharts consist of nodes represented by various geometric figures and the relationships between them can be illustrated using links or arrows. When defining you can define the flow direction in the diagram up down left right . Below you will find a simplified application diagram from my master's thesis. flowchart RL Analyst Analyst passes account ID App Application App returns report Analyst Phone Number List subgraph Application ponentA end Mermaid Class diagram Mermaid allows you to create UML compliant class diagrams i.e. define classes methods properties and dependencies between them. As an example I will use the code I used to generate a class diagram for the purposes of the article where I present the Mediator design pattern. ClassDiagram Mediator John Mediator Bob Mediator Tom Mediator Person people Mediator +send Mediator +addPerson class John Mediator mediator +String name +receive +send class Bob Mediator mediator +String name +receive +send class Tom Mediator mediator +String name +receive +send Mediator design pattern modified diagram Sequence diagram Similar to class diagrams Mermaid allows you to create UML compliant sequence diagrams . The example below also comes from my master's thesis and shows the sequence of steps for a successful application path.
|
|