blob: 1ac205f4300bb09c5629221f60cda74f2309ca33 [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 java.text.DecimalFormat;
import org.eclipse.apogy.examples.lander.Position;
import org.eclipse.emf.common.notify.AdapterFactory;
public class PositionCustomItemProvider extends PositionItemProvider {
private final DecimalFormat decimalFormat = new DecimalFormat("0.000");
public PositionCustomItemProvider(AdapterFactory adapterFactory) {
super(adapterFactory);
}
@Override
public String getText(Object object) {
Position position = (Position) object;
String label = getString("_UI_Position_type");
// If the position is not null
if (position != null) {
label += " (" + this.decimalFormat.format(position.getX()) + ", ";
label += this.decimalFormat.format(position.getY()) + " , ";
label += this.decimalFormat.format(position.getZ()) + ")";
}
return label;
}
}