blob: 801a0007653612d73fabc55e4e3951d8f44c1cae [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.text.DecimalFormat;
import org.eclipse.apogy.common.geometry.data3d.CartesianPositionCoordinates;
import org.eclipse.emf.common.notify.AdapterFactory;
public class CartesianPositionCoordinatesCustomItemProvider extends CartesianPositionCoordinatesItemProvider {
public CartesianPositionCoordinatesCustomItemProvider(AdapterFactory adapterFactory) {
super(adapterFactory);
}
// FIXME Centralize this.
private final DecimalFormat decimalFormat = new DecimalFormat("0.000");
@Override
public String getText(Object object) {
CartesianPositionCoordinates coords = (CartesianPositionCoordinates) object;
String label = getString("_UI_CartesianPositionCoordinates_type") + " (";
label += this.decimalFormat.format(coords.getX()) + ", ";
label += this.decimalFormat.format(coords.getY()) + ", ";
label += this.decimalFormat.format(coords.getZ()) + ")";
return label;
}
}