]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.g2d/src/org/simantics/g2d/tooltip/TextTooltipProvider.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / tooltip / TextTooltipProvider.java
index 45998f83fdc34e1905243d53bae9bde5fe20f384..808f67a43592bc6758d0ac5d4d8b38592eafa820 100644 (file)
@@ -1,47 +1,47 @@
-/*******************************************************************************\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.g2d.tooltip;\r
-\r
-import java.awt.Frame;\r
-import java.awt.Label;\r
-\r
-import org.simantics.g2d.element.IElement;\r
-/**\r
- * Simple tool-tip showing a label\r
- * \r
- * @author Marko Luukkainen <marko.luukkainen@vtt.fi>\r
- *\r
- */\r
-public abstract class TextTooltipProvider implements TooltipProvider {\r
-       private Frame frame;\r
-       \r
-       @Override\r
-       public void showTooltip(IElement element, int x, int y) {\r
-               frame = new Frame(getTooltipText(element));\r
-               frame.setFocusableWindowState(false);\r
-               frame.setUndecorated(true);\r
-               Label label = new Label(getTooltipText(element));\r
-               frame.add(label);\r
-               frame.pack();\r
-               frame.setVisible(true);\r
-               frame.setLocation(x,y-32);\r
-       }\r
-       \r
-       @Override\r
-       public void hideTooltip(IElement element) {\r
-               frame.setVisible(false);\r
-               frame.dispose();\r
-               frame = null;\r
-       }\r
-       \r
-       public abstract String getTooltipText(IElement element);\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.g2d.tooltip;
+
+import java.awt.Frame;
+import java.awt.Label;
+
+import org.simantics.g2d.element.IElement;
+/**
+ * Simple tool-tip showing a label
+ * 
+ * @author Marko Luukkainen <marko.luukkainen@vtt.fi>
+ *
+ */
+public abstract class TextTooltipProvider implements TooltipProvider {
+       private Frame frame;
+       
+       @Override
+       public void showTooltip(IElement element, int x, int y) {
+               frame = new Frame(getTooltipText(element));
+               frame.setFocusableWindowState(false);
+               frame.setUndecorated(true);
+               Label label = new Label(getTooltipText(element));
+               frame.add(label);
+               frame.pack();
+               frame.setVisible(true);
+               frame.setLocation(x,y-32);
+       }
+       
+       @Override
+       public void hideTooltip(IElement element) {
+               frame.setVisible(false);
+               frame.dispose();
+               frame = null;
+       }
+       
+       public abstract String getTooltipText(IElement element);
+}