blob: 7c4e604eaf4c7a464edd7e7513d6b33cbc2cac58 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Chalmers | University of Gothenburg, rt-labs and others.
* 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:
* Chalmers | University of Gothenburg and rt-labs - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.capra.core.adapters;
import java.util.List;
import org.eclipse.emf.ecore.EObject;
/**
* An minimal abstraction of a traceability link used in
* {@link TraceMetaModelAdapter}, to retain independence of a concrete trace
* metamodel.
*
* @author Anthony Anjorin, Salome Maro
*/
public class Connection {
private EObject origin;
private List<EObject> targets;
private EObject tlink;
public Connection(EObject origin, List<EObject> targets, EObject tlink) {
this.origin = origin;
this.targets = targets;
this.tlink = tlink;
}
public EObject getOrigin() {
return origin;
}
public List<EObject> getTargets() {
return targets;
}
public EObject getTlink() {
return tlink;
}
}