blob: bcbf89d9a64dfdcbb98b9854b0e888cdfe322bd6 [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.LanderSphericalFoot;
import org.eclipse.apogy.addons.vehicle.ui.ApogyAddonsVehicleUIFactory;
import org.eclipse.apogy.addons.vehicle.ui.LanderSphericalFootPresentation;
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 LanderSphericalFootPresentationAdapter implements NodePresentationAdapter {
public LanderSphericalFootPresentationAdapter() {
}
@Override
public Class<?> getAdaptedClass() {
return LanderSphericalFoot.class;
}
@Override
public NodePresentation getAdapter(Node obj, Object context) {
if (!isAdapterFor(obj)) {
throw new IllegalArgumentException();
}
LanderSphericalFoot foot = (LanderSphericalFoot) obj;
LanderSphericalFootPresentation presentationNode = ApogyAddonsVehicleUIFactory.eINSTANCE
.createLanderSphericalFootPresentation();
presentationNode.setNode(foot);
return presentationNode;
}
@Override
public boolean isAdapterFor(Node obj) {
return obj instanceof LanderSphericalFoot;
}
}