blob: e8fc75a700239412fd9e2bb9bc8bcc093af9a45f [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.addons.telecoms.provider;
import java.text.DecimalFormat;
import org.eclipse.apogy.addons.telecoms.SimpleRectangularFrustumRadiationPattern;
import org.eclipse.emf.common.notify.AdapterFactory;
public class SimpleRectangularFrustumRadiationPatternCustomItemProvider
extends SimpleRectangularFrustumRadiationPatternItemProvider {
public SimpleRectangularFrustumRadiationPatternCustomItemProvider(AdapterFactory adapterFactory) {
super(adapterFactory);
}
private final DecimalFormat decimalFormat = new DecimalFormat("0.00");
@Override
public String getText(Object object) {
SimpleRectangularFrustumRadiationPattern simpleRectangularFrustumRadiationPattern = (SimpleRectangularFrustumRadiationPattern) object;
String label = simpleRectangularFrustumRadiationPattern.getName();
if (label == null || label.length() == 0) {
label = getString("_UI_SimpleRectangularFrustumRadiationPattern_type");
}
label += " ("
+ this.decimalFormat
.format(Math.toDegrees(simpleRectangularFrustumRadiationPattern.getHorizontalFieldOfView()))
+ " deg h X " + this.decimalFormat.format(
Math.toDegrees(simpleRectangularFrustumRadiationPattern.getVerticalFieldOfView()))
+ " v deg )";
return label;
}
}