analysis: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / uml2sd / ITmfAsyncSequenceDiagramEvent.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 asynchronous sequence diagram events.
df0b8ff4 19 * </p>
3bd46eef 20 *
df0b8ff4
BH
21 * @author Bernd Hufmann
22 */
73005152
BH
23public interface ITmfAsyncSequenceDiagramEvent extends ITmfSyncSequenceDiagramEvent {
24 /**
df0b8ff4 25 * Returns end timestamp of message (i.e. receive time)
3bd46eef 26 *
df0b8ff4 27 * @return end timestamp of message (i.e. receive time)
73005152 28 */
57a2a5ca 29 ITmfTimestamp getEndTime();
73005152 30}
This page took 0.122265 seconds and 5 git commands to generate.