]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scenegraph/src/org/simantics/scenegraph/g2d/G2DFocusManager.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.scenegraph / src / org / simantics / scenegraph / g2d / G2DFocusManager.java
index 09421b0e7cd6abd02e5dab280cc49057c2b25b72..6647d43cd1ad524eb4c6dea3384e32a805b240bc 100644 (file)
@@ -1,35 +1,35 @@
-/*******************************************************************************\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.scenegraph.g2d;\r
-\r
-import java.awt.Component;\r
-\r
-public class G2DFocusManager {\r
-       public static G2DFocusManager INSTANCE = new G2DFocusManager();\r
-       \r
-       protected Component focus = null;\r
-       \r
-       private G2DFocusManager() {\r
-       }\r
-       \r
-       public void markFocus(Component component) {\r
-               focus = component;\r
-       }\r
-       \r
-       public void clearFocus() {\r
-               focus = null;\r
-       }\r
-       \r
-       public Component getFocusOwner() {\r
-               return focus;\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.scenegraph.g2d;
+
+import java.awt.Component;
+
+public class G2DFocusManager {
+       public static G2DFocusManager INSTANCE = new G2DFocusManager();
+       
+       protected Component focus = null;
+       
+       private G2DFocusManager() {
+       }
+       
+       public void markFocus(Component component) {
+               focus = component;
+       }
+       
+       public void clearFocus() {
+               focus = null;
+       }
+       
+       public Component getFocusOwner() {
+               return focus;
+       }
+}