]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.graphviz/src/org/simantics/graphviz/internal/xdot/SetFillColor.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.graphviz / src / org / simantics / graphviz / internal / xdot / SetFillColor.java
index e86ad27d909d1edaccb56e66580184d067f2ac81..f89471dee342ed9df307d0c17e384513b5d19b87 100644 (file)
@@ -1,40 +1,40 @@
-/*******************************************************************************\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.internal.xdot;\r
-\r
-import java.awt.Color;\r
-import java.awt.Graphics2D;\r
-\r
-public class SetFillColor implements DrawCommand {\r
-\r
-    private static ThreadLocal<Color> fillColor =\r
-        new ThreadLocal<Color>();\r
-    \r
-       Color color;\r
-       \r
-       public SetFillColor(String colorName) {\r
-           color = Colors.getColor(colorName);\r
-       }\r
-\r
-       @Override\r
-       public void draw(Graphics2D g) {\r
-               fillColor.set(color);\r
-       }\r
-       \r
-       public static Color getFillColor() {\r
-           Color ret = fillColor.get();\r
-           if(ret == null)\r
-               return Color.BLACK;\r
-           return ret;\r
-       }\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.internal.xdot;
+
+import java.awt.Color;
+import java.awt.Graphics2D;
+
+public class SetFillColor implements DrawCommand {
+
+    private static ThreadLocal<Color> fillColor =
+        new ThreadLocal<Color>();
+    
+       Color color;
+       
+       public SetFillColor(String colorName) {
+           color = Colors.getColor(colorName);
+       }
+
+       @Override
+       public void draw(Graphics2D g) {
+               fillColor.set(color);
+       }
+       
+       public static Color getFillColor() {
+           Color ret = fillColor.get();
+           if(ret == null)
+               return Color.BLACK;
+           return ret;
+       }
+
+}