Copyright header update, 2015 edition
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / uml2sd / ITmfSyncSequenceDiagramEvent.java
CommitLineData
73005152 1/**********************************************************************
ed902a2b 2 * Copyright (c) 2011, 2014 Ericsson
3bd46eef 3 *
73005152
BH
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
3bd46eef
AM
8 *
9 * Contributors:
73005152
BH
10 * Bernd Hufmann - Initial API and implementation
11 **********************************************************************/
2bdf0193 12package org.eclipse.tracecompass.tmf.core.uml2sd;
73005152 13
2bdf0193 14import org.eclipse.tracecompass.tmf.core.timestamp.ITmfTimestamp;
73005152 15
df0b8ff4
BH
16/**
17 * <p>
3bd46eef 18 * Interface for synchronous sequence diagram events.
df0b8ff4 19 * </p>
3bd46eef 20 *
df0b8ff4
BH
21 * @version 1.0
22 * @author Bernd Hufmann
23 */
73005152 24public interface ITmfSyncSequenceDiagramEvent {
3bd46eef 25
73005152 26 /**
df0b8ff4 27 * Returns Name of message.
3bd46eef 28 *
73005152
BH
29 * @return Name of message
30 */
57a2a5ca 31 String getName();
3bd46eef 32
73005152 33 /**
df0b8ff4 34 * Returns name of sender of message.
3bd46eef 35 *
73005152
BH
36 * @return name of sender of message
37 */
57a2a5ca 38 String getSender();
3bd46eef 39
73005152 40 /**
df0b8ff4 41 * Returns Name of receiver of message.
3bd46eef 42 *
73005152
BH
43 * @return Name of receiver of message
44 */
57a2a5ca 45 String getReceiver();
73005152
BH
46
47 /**
df0b8ff4 48 * Returns Start time of message (i.e. send time).
3bd46eef 49 *
73005152 50 * @return Start timestamp of message (i.e. send time)
3bd46eef 51 * @since 2.0
73005152 52 */
57a2a5ca 53 ITmfTimestamp getStartTime();
73005152 54}
This page took 0.073474 seconds and 5 git commands to generate.