X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.browsing.ui.swt%2Fsrc%2Forg%2Fsimantics%2Fbrowsing%2Fui%2Fswt%2Fcontentassist%2FNamedObjectContentProposal.java;h=37a30678a41aea657adb31467e4b49b402f47efb;hp=39cf3e4af26446fb04dd2f6c50bf252518f9685f;hb=0ae2b770234dfc3cbb18bd38f324125cf0faca07;hpb=24e2b34260f219f0d1644ca7a138894980e25b14 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 index 39cf3e4af..37a30678a 100644 --- 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 @@ -1,62 +1,62 @@ -/******************************************************************************* - * 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 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() + "]"; - } - -} +/******************************************************************************* + * 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 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() + "]"; + } + +}