]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/contentassist/NamedObjectContentProposal.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.browsing.ui.swt / src / org / simantics / browsing / ui / swt / contentassist / NamedObjectContentProposal.java
index 39cf3e4af26446fb04dd2f6c50bf252518f9685f..37a30678a41aea657adb31467e4b49b402f47efb 100644 (file)
@@ -1,62 +1,62 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2012 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.browsing.ui.swt.contentassist;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public class NamedObjectContentProposal implements INamedObjectContentProposal {\r
-\r
-    private final NamedObject<?> object;\r
-    private final int         position;\r
-\r
-    public NamedObjectContentProposal(NamedObject<?> object, int position) {\r
-        this.object = object;\r
-        this.position = position;\r
-    }\r
-\r
-    @Override\r
-    public INamedObject getNamedObject() {\r
-        return object;\r
-    }\r
-\r
-    @SuppressWarnings("unchecked")\r
-    public <T> T getObject() {\r
-        return (T) object.getObject();\r
-    }\r
-\r
-    @Override\r
-    public String getContent() {\r
-        return object.getName().substring(position);\r
-    }\r
-\r
-    @Override\r
-    public int getCursorPosition() {\r
-        return object.getName().length();\r
-    }\r
-\r
-    @Override\r
-    public String getLabel() {\r
-        return object.getLabel();\r
-    }\r
-\r
-    @Override\r
-    public String getDescription() {\r
-        return object.getDescription();\r
-    }\r
-\r
-    @Override\r
-    public String toString() {\r
-        return getClass().getSimpleName() + "[" + object.toString() + "]";\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2012 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.browsing.ui.swt.contentassist;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public class NamedObjectContentProposal implements INamedObjectContentProposal {
+
+    private final NamedObject<?> object;
+    private final int         position;
+
+    public NamedObjectContentProposal(NamedObject<?> object, int position) {
+        this.object = object;
+        this.position = position;
+    }
+
+    @Override
+    public INamedObject getNamedObject() {
+        return object;
+    }
+
+    @SuppressWarnings("unchecked")
+    public <T> T getObject() {
+        return (T) object.getObject();
+    }
+
+    @Override
+    public String getContent() {
+        return object.getName().substring(position);
+    }
+
+    @Override
+    public int getCursorPosition() {
+        return object.getName().length();
+    }
+
+    @Override
+    public String getLabel() {
+        return object.getLabel();
+    }
+
+    @Override
+    public String getDescription() {
+        return object.getDescription();
+    }
+
+    @Override
+    public String toString() {
+        return getClass().getSimpleName() + "[" + object.toString() + "]";
+    }
+
+}