blob: e2f3ebeb39f6cbed3d0a28777ce430bc45d9afdf [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 - initial API and implementation
* Regent L'Archeveque
*
* SPDX-License-Identifier: EPL-1.0
*******************************************************************************/
package org.eclipse.apogy.addons.sensors.imaging.camera.provider;
import org.eclipse.apogy.addons.sensors.imaging.camera.CameraImageAnnotation;
import org.eclipse.emf.common.notify.AdapterFactory;
public class CameraImageAnnotationCustomItemProvider extends CameraImageAnnotationItemProvider {
public CameraImageAnnotationCustomItemProvider(AdapterFactory adapterFactory) {
super(adapterFactory);
}
protected String getCameraImageAnnotationText(Object object, String uiTypeString) {
CameraImageAnnotation cameraImageAnnotation = (CameraImageAnnotation) object;
String label = cameraImageAnnotation.getName();
if (label == null || label.length() == 0) {
label = getString(uiTypeString);
} else {
label = getString(uiTypeString) + " " + label;
}
if (cameraImageAnnotation.isVisible()) {
label += " (visible)";
}
return label;
}
}