blob: 8e0d70264641db849fb260f93ec643a201173f4f [file] [log] [blame]
/**
********************************************************************************
* Copyright (c) 2013 Timing-Architects Embedded Systems GmbH and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Generated using Eclipse EMF
*
********************************************************************************
*/
package org.eclipse.app4mc.tracing.converter.ot1.OT1;
import java.math.BigInteger;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Trace Entry Type</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Ein Trace-Einträg (TraceEntryType) besitzt immer
* eine Zeitstempel (time), der eindeutig beschreibt, wann ein Ereignis
* (value) stattfand. Optional können immer noch Daten in Form eines
* strings hinzugefügt werden.
*
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.tracing.converter.ot1.OT1.TraceEntryType#getData <em>Data</em>}</li>
* <li>{@link org.eclipse.app4mc.tracing.converter.ot1.OT1.TraceEntryType#getElementRefId <em>Element Ref Id</em>}</li>
* <li>{@link org.eclipse.app4mc.tracing.converter.ot1.OT1.TraceEntryType#getEventId <em>Event Id</em>}</li>
* <li>{@link org.eclipse.app4mc.tracing.converter.ot1.OT1.TraceEntryType#getTime <em>Time</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.tracing.converter.ot1.OT1.OT1Package#getTraceEntryType()
* @model extendedMetaData="name='TraceEntryType' kind='elementOnly'"
* @generated
*/
public interface TraceEntryType extends EObject {
/**
* Returns the value of the '<em><b>Data</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Data</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Data</em>' attribute.
* @see #setData(String)
* @see org.eclipse.app4mc.tracing.converter.ot1.OT1.OT1Package#getTraceEntryType_Data()
* @model dataType="org.eclipse.emf.ecore.xml.type.String"
* extendedMetaData="kind='element' name='data' namespace='##targetNamespace'"
* @generated
*/
String getData();
/**
* Sets the value of the '{@link org.eclipse.app4mc.tracing.converter.ot1.OT1.TraceEntryType#getData <em>Data</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Data</em>' attribute.
* @see #getData()
* @generated
*/
void setData(String value);
/**
* Returns the value of the '<em><b>Element Ref Id</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Element Ref Id</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Element Ref Id</em>' attribute.
* @see #setElementRefId(BigInteger)
* @see org.eclipse.app4mc.tracing.converter.ot1.OT1.OT1Package#getTraceEntryType_ElementRefId()
* @model dataType="org.eclipse.emf.ecore.xml.type.UnsignedLong" required="true"
* extendedMetaData="kind='attribute' name='elementRefId' namespace='##targetNamespace'"
* @generated
*/
BigInteger getElementRefId();
/**
* Sets the value of the '{@link org.eclipse.app4mc.tracing.converter.ot1.OT1.TraceEntryType#getElementRefId <em>Element Ref Id</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Element Ref Id</em>' attribute.
* @see #getElementRefId()
* @generated
*/
void setElementRefId(BigInteger value);
/**
* Returns the value of the '<em><b>Event Id</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Event Id</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Event Id</em>' attribute.
* @see #setEventId(BigInteger)
* @see org.eclipse.app4mc.tracing.converter.ot1.OT1.OT1Package#getTraceEntryType_EventId()
* @model dataType="org.eclipse.emf.ecore.xml.type.UnsignedLong" required="true"
* extendedMetaData="kind='attribute' name='eventId' namespace='##targetNamespace'"
* @generated
*/
BigInteger getEventId();
/**
* Sets the value of the '{@link org.eclipse.app4mc.tracing.converter.ot1.OT1.TraceEntryType#getEventId <em>Event Id</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Event Id</em>' attribute.
* @see #getEventId()
* @generated
*/
void setEventId(BigInteger value);
/**
* Returns the value of the '<em><b>Time</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Time</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Time</em>' attribute.
* @see #setTime(BigInteger)
* @see org.eclipse.app4mc.tracing.converter.ot1.OT1.OT1Package#getTraceEntryType_Time()
* @model dataType="org.eclipse.emf.ecore.xml.type.UnsignedLong" required="true"
* extendedMetaData="kind='attribute' name='time' namespace='##targetNamespace'"
* @generated
*/
BigInteger getTime();
/**
* Sets the value of the '{@link org.eclipse.app4mc.tracing.converter.ot1.OT1.TraceEntryType#getTime <em>Time</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Time</em>' attribute.
* @see #getTime()
* @generated
*/
void setTime(BigInteger value);
} // TraceEntryType