blob: 16264f35160e29eadf30d3ca60a855ca7cbd89e9 [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 - initial API and implementation
*
* SPDX-License-Identifier: EPL-1.0
*******************************************************************************/
package org.eclipse.apogy.examples.lander.provider;
import org.eclipse.apogy.examples.lander.LanderStub;
import org.eclipse.emf.common.notify.AdapterFactory;
public class LanderStubCustomItemProvider extends LanderStubItemProvider {
public LanderStubCustomItemProvider(AdapterFactory adapterFactory) {
super(adapterFactory);
}
@Override
public String getText(Object object) {
// Cast down accordingly
LanderStub stubLander = (LanderStub) object;
// The default label for the lander
String label = this.getString("_UI_LanderStub_type");
label += getLanderSuffixText(stubLander);
// Return the generated label
return label;
}
}