blob: a634601fdf8b4bb7030f76aa4cfae7a11b5469e0 [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.examples.lander.impl;
import org.eclipse.apogy.examples.lander.ApogyExamplesLanderFactory;
import org.eclipse.apogy.examples.lander.Lander;
import org.eclipse.apogy.examples.lander.LanderSimulated;
import org.eclipse.apogy.examples.lander.LanderStub;
public class ApogyExampleLanderFacadeCustomImpl extends ApogyExampleLanderFacadeImpl {
@Override
public Lander makeLanderSameType(Lander lander) {
// Keep track of the new lander instance
Lander newLander = null;
// If the given lander had a simulated implementation
if (lander instanceof LanderSimulated) {
// Create a simulated lander
newLander = ApogyExamplesLanderFactory.eINSTANCE.createLanderSimulated();
}
// Else if the given lander had a stub implementation
else if (lander instanceof LanderStub) {
// Create a stub lander
newLander = ApogyExamplesLanderFactory.eINSTANCE.createLanderStub();
}
// Return the new lander
return newLander;
}
}