/** * * Copyright (c) 2010-2015, Andras Szabolcs Nagy, Abel Hegedus, Akos Horvath, Zoltan Ujhelyi and Daniel Varro * 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: * Andras Szabolcs Nagy - initial API and implementation * */ package org.eclipse.viatra.dse.examples.bpmn.patterns.util; import org.eclipse.viatra.dse.examples.bpmn.patterns.AllocateTaskToVariantMatch; import org.eclipse.viatra.dse.examples.simplifiedbpmn.ResourceTypeVariant; import org.eclipse.viatra.dse.examples.simplifiedbpmn.Task; import org.eclipse.viatra.query.runtime.api.IMatchProcessor; /** * A match processor tailored for the org.eclipse.viatra.dse.examples.bpmn.patterns.allocateTaskToVariant pattern. * * Clients should derive an (anonymous) class that implements the abstract process(). * */ @SuppressWarnings("all") public abstract class AllocateTaskToVariantProcessor implements IMatchProcessor<AllocateTaskToVariantMatch> { /** * Defines the action that is to be executed on each match. * @param pT the value of pattern parameter T in the currently processed match * @param pRTV the value of pattern parameter RTV in the currently processed match * */ public abstract void process(final Task pT, final ResourceTypeVariant pRTV); @Override public void process(final AllocateTaskToVariantMatch match) { process(match.getT(), match.getRTV()); } }