tmf: Make Analysis Requirements implement Predicates
[deliverable/tracecompass.git] / tmf / 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 * @author Bernd Hufmann
22 */
73005152 23public interface ITmfSyncSequenceDiagramEvent {
3bd46eef 24
73005152 25 /**
df0b8ff4 26 * Returns Name of message.
3bd46eef 27 *
73005152
BH
28 * @return Name of message
29 */
57a2a5ca 30 String getName();
3bd46eef 31
73005152 32 /**
df0b8ff4 33 * Returns name of sender of message.
3bd46eef 34 *
73005152
BH
35 * @return name of sender of message
36 */
57a2a5ca 37 String getSender();
3bd46eef 38
73005152 39 /**
df0b8ff4 40 * Returns Name of receiver of message.
3bd46eef 41 *
73005152
BH
42 * @return Name of receiver of message
43 */
57a2a5ca 44 String getReceiver();
73005152
BH
45
46 /**
df0b8ff4 47 * Returns Start time of message (i.e. send time).
3bd46eef 48 *
73005152
BH
49 * @return Start timestamp of message (i.e. send time)
50 */
57a2a5ca 51 ITmfTimestamp getStartTime();
73005152 52}
This page took 0.08711 seconds and 5 git commands to generate.