blob: e76fc0d3bd7ed52f8f7d8eb8fe9ebec60efe522f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Agence spatiale canadienne / Canadian Space Agency
* 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:
* Pierre Allard,
* Regent L'Archeveque,
* Olivier L. Larouche - initial API and implementation
*
* SPDX-License-Identifier: EPL-1.0
*
*******************************************************************************/
package org.eclipse.apogy.core.invocator.provider;
import org.eclipse.apogy.core.invocator.AttributeResultValue;
import org.eclipse.emf.common.notify.AdapterFactory;
public class AttributeResultValueCustomItemProvider extends AttributeResultValueItemProvider {
public AttributeResultValueCustomItemProvider(AdapterFactory adapterFactory) {
super(adapterFactory);
}
@Override
public String getText(Object object) {
AttributeResultValue attributeResultValue = (AttributeResultValue) object;
String label = "";
if ((attributeResultValue.getValue() != null) && attributeResultValue.getValue().getObject() != null) {
label = attributeResultValue.getValue().getObject().toString();
}
return label;
}
}