blob: b1d1ee00362690f42c9ae13caeb1a7011287108a [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.core.environment.surface.ui.adapters;
import org.eclipse.apogy.common.topology.Node;
import org.eclipse.apogy.common.topology.ui.NodePresentation;
import org.eclipse.apogy.common.topology.ui.NodePresentationAdapter;
import org.eclipse.apogy.core.environment.surface.CartesianTriangularMeshMapLayerNode;
import org.eclipse.apogy.core.environment.surface.ui.ApogySurfaceEnvironmentUIFactory;
import org.eclipse.apogy.core.environment.surface.ui.CartesianTriangularMeshMapLayerNodePresentation;
public class CartesianTriangularMeshMapLayerNodePresentationAdapter implements NodePresentationAdapter {
public CartesianTriangularMeshMapLayerNodePresentationAdapter() {
}
@Override
public NodePresentation getAdapter(Node node, Object context) {
if (!isAdapterFor(node)) {
throw new IllegalArgumentException();
}
CartesianTriangularMeshMapLayerNodePresentation presentation = ApogySurfaceEnvironmentUIFactory.eINSTANCE
.createCartesianTriangularMeshMapLayerNodePresentation();
CartesianTriangularMeshMapLayerNode cNode = (CartesianTriangularMeshMapLayerNode) node;
presentation.setNode(cNode);
return presentation;
}
@Override
public boolean isAdapterFor(Node node) {
boolean adapterFor = false;
if (node instanceof CartesianTriangularMeshMapLayerNode) {
adapterFor = true;
}
return adapterFor;
}
@Override
public Class<?> getAdaptedClass() {
return CartesianTriangularMeshMapLayerNode.class;
}
}