blob: a088c4e44b7a43a9b8168fbbe32a518d44a7e96e [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.FeatureOfInterestNode;
import org.eclipse.apogy.core.environment.surface.ui.ApogySurfaceEnvironmentUIFactory;
import org.eclipse.apogy.core.environment.surface.ui.FeatureOfInterestNodePresentation;
public class FeatureOfInterestPresentationAdapter implements NodePresentationAdapter {
public FeatureOfInterestPresentationAdapter() {
}
@Override
public Class<?> getAdaptedClass() {
return FeatureOfInterestNode.class;
}
@Override
public boolean isAdapterFor(Node obj) {
boolean isAdapter = obj instanceof FeatureOfInterestNode;
return isAdapter;
}
@Override
public NodePresentation getAdapter(Node obj, Object context) {
if (!isAdapterFor(obj)) {
throw new IllegalArgumentException();
}
FeatureOfInterestNodePresentation presentationNode = ApogySurfaceEnvironmentUIFactory.eINSTANCE
.createFeatureOfInterestNodePresentation();
presentationNode.setNode(obj);
return presentationNode;
}
}