blob: a3d26bfeba0a8ca8169bbec114e530bbf86f4f05 [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 java.util.ArrayList;
import org.eclipse.viatra2.gtasm.patternmatcher.impl.patternmatcher.internal.searchgraph.SearchGraphNode;
import org.eclipse.viatra2.gtasmmodel.gtasm.metamodel.asm.core.AnnotatedElement;
import org.eclipse.viatra2.gtasmmodel.gtasm.metamodel.asm.core.GTASMElement;
/**
* @author Akos Horvath
*
*/
public abstract class NodeTraceabilityElement extends AbstractTraceabilityElement<SearchGraphNode> {
public NodeTraceabilityElement(){
super();
}
public NodeTraceabilityElement(AnnotatedElement element){
super(element);
}
}