blob: 97e82c37534ce2784dadc83ba840cab4916c4d7e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004-2009 Akos Horvath 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:
* Akos Horvath - initial API and implementation
*******************************************************************************/
package org.eclipse.viatra2.gtasm.patternmatcher.impl.patternmatcher.internal.searchgraph.traceability;
import org.eclipse.viatra2.gtasm.patternmatcher.impl.patternmatcher.internal.searchgraph.PatternCallSearchGraphNode;
import org.eclipse.viatra2.gtasmmodel.gtasm.metamodel.asm.core.AnnotatedElement;
/**A simple traceability element
* @author Akos Horvath
*
*/
public class PatternCallNodeTraceabilityElement extends VariableNodeTraceabilityElement {
public PatternCallNodeTraceabilityElement(PatternCallSearchGraphNode node, AnnotatedElement element) {
super(node,element);
}
public PatternCallSearchGraphNode getVPMElement() {
return (PatternCallSearchGraphNode)variableSearchGraphNode;
}
}