blob: 0d992c4dd8cd9aef72e16716579fd3a596745964 [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,
* Sebastien Gemme - initial API and implementation
*
* SPDX-License-Identifier: EPL-1.0
*
*******************************************************************************/
package org.eclipse.apogy.core.environment.converters;
import org.eclipse.apogy.common.converters.IConverter;
import org.eclipse.apogy.core.environment.ApogyEnvironment;
import org.eclipse.apogy.core.environment.TimeSourcesList;
public class ApogyEnvironmentToTimeSourcesListConverter implements IConverter {
public ApogyEnvironmentToTimeSourcesListConverter() {
}
@Override
public Class<?> getOutputType() {
return TimeSourcesList.class;
}
@Override
public Class<?> getInputType() {
return ApogyEnvironment.class;
}
@Override
public boolean canConvert(Object input) {
return input instanceof ApogyEnvironment;
}
@Override
public Object convert(Object input) throws Exception {
return ((ApogyEnvironment) input).getTimeSourcesList();
}
}