]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.graphviz.ui/examples/org/simantics/graphviz/ui/examples/GraphvizComponentExample.java
Externalize strings
[simantics/platform.git] / bundles / org.simantics.graphviz.ui / examples / org / simantics / graphviz / ui / examples / GraphvizComponentExample.java
index dc9d1ada709eab4bb7bc3f10a94cb2e6ebf15792..f8f775932396c4eac8313d465d544ca4f3240297 100644 (file)
@@ -39,9 +39,9 @@ public class GraphvizComponentExample {
     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");
+        Node node1 = new Node(graph, "A"); //$NON-NLS-1$
+        Node node2 = new Node(graph, "B"); //$NON-NLS-1$
+        new Edge(graph, node1, node2).setLabel("A to B"); //$NON-NLS-1$
 
         return graph;
     }