blob: 13479f0b60d00b1ad9be46dd8fc415eb422f5b9a [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
*
* SPDX-License-Identifier: EPL-1.0
*******************************************************************************/
package org.eclipse.apogy.core.environment.earth.atmosphere.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.earth.atmosphere.EarthAtmosphereWorksiteNode;
import org.eclipse.apogy.core.environment.earth.atmosphere.ui.ApogyEarthAtmosphereEnvironmentUIFactory;
import org.eclipse.apogy.core.environment.earth.atmosphere.ui.EarthAtmosphereWorksitePresentation;
public class EarthAtmosphereWorksitePresentationAdapter implements NodePresentationAdapter {
@Override
public boolean isAdapterFor(Node obj) {
boolean isAdapter = obj instanceof EarthAtmosphereWorksiteNode;
return isAdapter;
}
@Override
public NodePresentation getAdapter(Node obj, Object context) {
if (!isAdapterFor(obj)) {
throw new IllegalArgumentException();
}
EarthAtmosphereWorksitePresentation presentationNode = ApogyEarthAtmosphereEnvironmentUIFactory.eINSTANCE
.createEarthAtmosphereWorksitePresentation();
presentationNode.setNode(obj);
return presentationNode;
}
@Override
public Class<?> getAdaptedClass() {
return EarthAtmosphereWorksiteNode.class;
}
}