]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/contentassist/NamedObjectContentProposal.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.browsing.ui.swt / src / org / simantics / browsing / ui / swt / contentassist / NamedObjectContentProposal.java
diff --git a/bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/contentassist/NamedObjectContentProposal.java b/bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/contentassist/NamedObjectContentProposal.java
new file mode 100644 (file)
index 0000000..39cf3e4
--- /dev/null
@@ -0,0 +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