Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.etrice.doc/doc/image-src/012-tutorial-structure.dot')
-rw-r--r--plugins/org.eclipse.etrice.doc/doc/image-src/012-tutorial-structure.dot17
1 files changed, 17 insertions, 0 deletions
diff --git a/plugins/org.eclipse.etrice.doc/doc/image-src/012-tutorial-structure.dot b/plugins/org.eclipse.etrice.doc/doc/image-src/012-tutorial-structure.dot
new file mode 100644
index 000000000..0eea8e1ff
--- /dev/null
+++ b/plugins/org.eclipse.etrice.doc/doc/image-src/012-tutorial-structure.dot
@@ -0,0 +1,17 @@
+digraph TutorialStructure {
+
+ node [style=filled color=chocolate3]
+ SetupForJava[label="Setting up the workspace for Java" ];
+ HelloWorldForJava[label="Hello World for Java"];
+ SetupForC[label="Setting up the workspace for C" ];
+ HelloWorldForC[label="Hello World for C"];
+ PingPong [label="Ping Pong"];
+ TrafficLight [label="Traffic Light"];
+
+ SetupForJava -> HelloWorldForJava;
+ SetupForC -> HelloWorldForC;
+ HelloWorldForJava -> PingPong;
+ HelloWorldForC -> PingPong;
+ PingPong -> TrafficLight
+
+} \ No newline at end of file

Back to the top