blob: 74b104efea43e2d39cdbb6eb12c33a149cce918c [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2018 CEA LIST and others.
*
* 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:
* CEA LIST - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.internal.infra.gmfdiag.layers.model.layers.provider.custom;
import java.util.Map;
import org.eclipse.emf.common.notify.AdapterFactory;
import org.eclipse.papyrus.internal.infra.gmfdiag.layers.model.layers.provider.StringToTypeInstanceMapItemProvider;
/**
* @author QL238289
*
*/
public class CustomStringToTypeInstanceMapItemProvider extends StringToTypeInstanceMapItemProvider {
/**
* Constructor.
*
* @param adapterFactory
*/
public CustomStringToTypeInstanceMapItemProvider(AdapterFactory adapterFactory) {
super(adapterFactory);
}
/**
* This returns the label text for the adapted class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
*/
@Override
public String getText(Object object) {
Map.Entry<?, ?> stringToTypeInstanceMap = (Map.Entry<?, ?>) object;
// return "" + stringToTypeInstanceMap.getKey() + " -> " + stringToTypeInstanceMap.getValue();
// TypeInstance instance = (TypeInstance)stringToTypeInstanceMap.getValue();
return "Property '" + stringToTypeInstanceMap.getKey() + "'";
}
}