Click here to Skip to main content
15,998,003 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
if user gives print command from word document, then how to design this singleton design pattern in UML.

What I have tried:

i tried in UML, how to post image to code.
Posted
Updated 30-Nov-18 7:42am
Comments
Richard MacCutchan 30-Nov-18 5:23am    
What is this about?

1 solution

Maybe you can find an UML tool to your liking here: https://www.slant.co/topics/4978/~what-is-the-fastest-way-to-create-and-edit-uml-diagrams[^]
If you want to post a diagram here or on a blog, you can try Gravizo, this creates a link with the diagram in text format that you can paste.

<img src='https://g.gravizo.com/svg?
digraph G {
main -> parse -> execute;
main -> init;
main -> cleanup;
execute -> make_string;
execute -> printf
init -> make_string;
main -> printf;
execute -> compare;
}
'/>

Example diagram[^]
 
Share this answer
 
v4

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900