blob: 4f622915408032095ccbb85a0abd54856e1ef341 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 TU Wien.
* 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:
* Alexander Bergmayr (TU Wien) - initial API and implementation
*
* Initially developed in the context of ARTIST EU project www.artist-project.eu
*******************************************************************************/
/**
*/
package org.eclipse.upr.platform.trace;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Trace</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.upr.platform.trace.Trace#getTraceLinks <em>Trace Links</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.upr.platform.trace.TracePackage#getTrace()
* @model
* @generated
*/
public interface Trace extends EObject {
/**
* Returns the value of the '<em><b>Trace Links</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.upr.platform.trace.TraceLink}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Trace Links</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Trace Links</em>' containment reference list.
* @see org.eclipse.upr.platform.trace.TracePackage#getTrace_TraceLinks()
* @model containment="true"
* @generated
*/
EList<TraceLink> getTraceLinks();
} // Trace