blob: be917d91ebb6a08953a0a9ab9d892e64208477c1 [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.vehicle.ui.adapters;
import org.eclipse.apogy.addons.vehicle.Thruster;
import org.eclipse.apogy.addons.vehicle.ui.ApogyAddonsVehicleUIFactory;
import org.eclipse.apogy.addons.vehicle.ui.ThrusterPresentation;
import org.eclipse.apogy.common.topology.Node;
import org.eclipse.apogy.common.topology.ui.NodePresentation;
import org.eclipse.apogy.common.topology.ui.NodePresentationAdapter;
public class ThrusterPresentationAdapter implements NodePresentationAdapter {
public ThrusterPresentationAdapter() {
}
@Override
public Class<?> getAdaptedClass() {
return Thruster.class;
}
@Override
public NodePresentation getAdapter(Node obj, Object context) {
if (!isAdapterFor(obj)) {
throw new IllegalArgumentException();
}
Thruster thruster = (Thruster) obj;
ThrusterPresentation presentationNode = ApogyAddonsVehicleUIFactory.eINSTANCE.createThrusterPresentation();
presentationNode.setNode(thruster);
return presentationNode;
}
@Override
public boolean isAdapterFor(Node obj) {
return obj instanceof Thruster;
}
}