blob: 616b120683a70d389e2cd3121570638c79313dac [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 - initial API and implementation
*
* SPDX-License-Identifier: EPL-1.0
*******************************************************************************/
package org.eclipse.apogy.core.environment.earth.ui.provider;
import java.io.File;
import org.eclipse.apogy.core.environment.earth.ui.SurfacePolygonWorldWindLayer;
import org.eclipse.emf.common.notify.AdapterFactory;
public class SurfacePolygonWorldWindLayerCustomItemProvider extends SurfacePolygonWorldWindLayerItemProvider {
public SurfacePolygonWorldWindLayerCustomItemProvider(AdapterFactory adapterFactory) {
super(adapterFactory);
}
@Override
public String getText(Object object) {
SurfacePolygonWorldWindLayer surfacePolygonWorldWindLayer = (SurfacePolygonWorldWindLayer) object;
String label = surfacePolygonWorldWindLayer.getName();
if (label == null || label.length() == 0) {
label = getString("_UI_SurfacePolygonWorldWindLayer_type");
}
String suffix = getSurfacePolygonWorldWindLayerSuffix(surfacePolygonWorldWindLayer);
if (suffix.length() > 0) {
label += " (" + suffix + ")";
}
return label;
}
protected String getSurfacePolygonWorldWindLayerSuffix(SurfacePolygonWorldWindLayer surfacePolygonWorldWindLayer) {
String suffix = "";
String topSuffix = getAbstractWorldWindLayerText(surfacePolygonWorldWindLayer);
if (topSuffix.length() > 0) {
suffix += topSuffix;
}
String urlSuffix = "";
if (surfacePolygonWorldWindLayer.getUrl() != null) {
int index = surfacePolygonWorldWindLayer.getUrl().lastIndexOf(File.separator);
if (index >= 0 && (index + 1 < surfacePolygonWorldWindLayer.getUrl().length())) {
urlSuffix = surfacePolygonWorldWindLayer.getUrl().substring(index + 1);
}
}
if (urlSuffix.length() > 0) {
if (topSuffix.length() > 0) {
suffix += ", ";
}
suffix += urlSuffix;
}
return suffix;
}
}