blob: 2b370763de746c5a3e83612bbbe2e1d7cca6cad3 [file] [log] [blame]
/**
*
* 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.VariantAllocatedToTaskMatch;
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.variantAllocatedToTask pattern.
*
* Clients should derive an (anonymous) class that implements the abstract process().
*
*/
@SuppressWarnings("all")
public abstract class VariantAllocatedToTaskProcessor implements IMatchProcessor<VariantAllocatedToTaskMatch> {
/**
* 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 VariantAllocatedToTaskMatch match) {
process(match.getT(), match.getRTV());
}
}