blob: 2374cca1c804c5fcd0376ec993b098e688069b0d [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2009-2010 Thales Corporate Services S.A.S.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Thales Corporate Services S.A.S - initial API and implementation
*
* </copyright>
*/
package org.eclipse.egf.pattern.ftask.tasks;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.egf.core.producer.InvocationException;
import org.eclipse.egf.ftask.producer.context.ITaskProductionContext;
import org.eclipse.egf.ftask.producer.invocation.ITaskProduction;
import org.eclipse.egf.model.pattern.TypePatternSubstitution;
import org.eclipse.egf.pattern.utils.SubstitutionHelper;
/**
* @author Thomas Guiu
*
*/
public class PatternSubstitutionCompositionTask implements ITaskProduction {
private static final String SUBSTITUTION_BASE = "base";//$NON-NLS-1$
private static final String SUBSTITUTION_ADDITION = "addition";//$NON-NLS-1$
private static final String SUBSTITUTION_OUT = "composed substitution";//$NON-NLS-1$
public void doExecute(ITaskProductionContext ctx, IProgressMonitor monitor) throws InvocationException {
TypePatternSubstitution inputA = ctx.getInputValue(SUBSTITUTION_BASE, TypePatternSubstitution.class);
TypePatternSubstitution inputB = ctx.getInputValue(SUBSTITUTION_ADDITION, TypePatternSubstitution.class);
TypePatternSubstitution result = SubstitutionHelper.merge(inputA, inputB);
ctx.setOutputValue(SUBSTITUTION_OUT, result);
}
public void postExecute(ITaskProductionContext productionContext, IProgressMonitor monitor) throws InvocationException {
}
public void preExecute(ITaskProductionContext productionContext, IProgressMonitor monitor) throws InvocationException {
}
}