blob: 6c9a73dbfc495f2e06b075ca02ae86f6459c51ed [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.antenna.provider;
import org.eclipse.apogy.examples.antenna.PTUDishAntennaStub;
import org.eclipse.emf.common.notify.AdapterFactory;
public class PTUDishAntennaStubCustomItemProvider extends PTUDishAntennaStubItemProvider {
public PTUDishAntennaStubCustomItemProvider(AdapterFactory adapterFactory) {
super(adapterFactory);
}
@Override
public String getText(Object object) {
/**
* This is the degree symbol, as expressed in unicode
*/
final String DEGREE_SYM = "\u00b0";
// Cast down to a PTU dish antenna stub
PTUDishAntennaStub ptuDishAntennaStub = (PTUDishAntennaStub) object;
// Get the default label
String label = getString("_UI_PTUDishAntennaStub_type");
// If the antenna isn't null
if (ptuDishAntennaStub != null) {
// Add the pan and tilt angles to the label
label += " (Pan=" + Math.toDegrees(ptuDishAntennaStub.getPanAngle()) + DEGREE_SYM + ", Tilt="
+ Math.toDegrees(ptuDishAntennaStub.getTiltAngle()) + DEGREE_SYM + ")";
}
// Return the generated label
return label;
}
}