blob: 2e4224c8995efa037dde12d5d1f21b1bb2ff0b45 [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,
* Olivier L. Larouche - initial API and implementation
*
* SPDX-License-Identifier: EPL-1.0
*
*******************************************************************************/
package org.eclipse.apogy.core.invocator.ui.converters;
import org.eclipse.apogy.common.converters.IConverter;
import org.eclipse.apogy.core.invocator.AbstractResult;
import org.eclipse.apogy.core.invocator.ReferenceResultValue;
public class AbstractResultToReferenceResultValue implements IConverter {
@Override
public boolean canConvert(Object arg0) {
if (arg0 instanceof AbstractResult) {
return (((AbstractResult) arg0).getResultValue() != null
&& ((AbstractResult) arg0).getResultValue() instanceof ReferenceResultValue);
}
return false;
}
@Override
public Object convert(Object arg0) throws Exception {
return ((AbstractResult) arg0).getResultValue();
}
@Override
public Class<?> getInputType() {
return AbstractResult.class;
}
@Override
public Class<?> getOutputType() {
return ReferenceResultValue.class;
}
}