blob: 7b5184a91f69c356f68c9de585984d5ce611a8d6 [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.common.geometry.data3d.provider;
import java.util.List;
import org.eclipse.apogy.common.geometry.data3d.SphericalTriangularMesh;
import org.eclipse.emf.common.notify.AdapterFactory;
public class SphericalTriangularMeshCustomItemProvider extends SphericalTriangularMeshItemProvider {
public SphericalTriangularMeshCustomItemProvider(AdapterFactory adapterFactory) {
super(adapterFactory);
}
@Override
public String getText(Object object) {
List<?> labelValue = ((SphericalTriangularMesh) object).getNormals();
String label = labelValue == null ? null : labelValue.toString();
return label == null || label.length() == 0 ? getString("_UI_SphericalTriangularMesh_type")
: getString("_UI_SphericalTriangularMesh_type") + " " + label;
}
}