]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.graphviz.ui/examples/org/simantics/graphviz/ui/examples/GraphvizComponentExample.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.graphviz.ui / examples / org / simantics / graphviz / ui / examples / GraphvizComponentExample.java
index b805e996697fde8573b64bc33a980c9ce32ee005..dc9d1ada709eab4bb7bc3f10a94cb2e6ebf15792 100644 (file)
@@ -1,49 +1,49 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.graphviz.ui.examples;\r
-\r
-import org.eclipse.swt.widgets.Display;\r
-import org.eclipse.swt.widgets.Shell;\r
-import org.simantics.graphviz.Edge;\r
-import org.simantics.graphviz.Graph;\r
-import org.simantics.graphviz.Node;\r
-import org.simantics.graphviz.ui.GraphvizComponent;\r
-\r
-public class GraphvizComponentExample {\r
-\r
-    public static void main (String[] args) {\r
-        final Display display = new Display();\r
-        final Shell shell = new Shell(display);\r
-\r
-        GraphvizComponent comp = new GraphvizComponent(shell, 0);\r
-        comp.setGraph(createGraph());\r
-\r
-        comp.setBounds(0, 0, 800, 600);\r
-        shell.pack();\r
-        shell.open ();\r
-        while (!shell.isDisposed()) {\r
-            if (!display.readAndDispatch()) display.sleep();\r
-        }\r
-        display.dispose();\r
-    }\r
-\r
-    private static Graph createGraph() {\r
-        Graph graph = new Graph();\r
-\r
-        Node node1 = new Node(graph, "A");\r
-        Node node2 = new Node(graph, "B");\r
-        new Edge(graph, node1, node2).setLabel("A to B");\r
-\r
-        return graph;\r
-    }\r
-\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.graphviz.ui.examples;
+
+import org.eclipse.swt.widgets.Display;
+import org.eclipse.swt.widgets.Shell;
+import org.simantics.graphviz.Edge;
+import org.simantics.graphviz.Graph;
+import org.simantics.graphviz.Node;
+import org.simantics.graphviz.ui.GraphvizComponent;
+
+public class GraphvizComponentExample {
+
+    public static void main (String[] args) {
+        final Display display = new Display();
+        final Shell shell = new Shell(display);
+
+        GraphvizComponent comp = new GraphvizComponent(shell, 0);
+        comp.setGraph(createGraph());
+
+        comp.setBounds(0, 0, 800, 600);
+        shell.pack();
+        shell.open ();
+        while (!shell.isDisposed()) {
+            if (!display.readAndDispatch()) display.sleep();
+        }
+        display.dispose();
+    }
+
+    private static Graph createGraph() {
+        Graph graph = new Graph();
+
+        Node node1 = new Node(graph, "A");
+        Node node2 = new Node(graph, "B");
+        new Edge(graph, node1, node2).setLabel("A to B");
+
+        return graph;
+    }
+
 }
\ No newline at end of file