tmf: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / uml2sd / ITmfAsyncSequenceDiagramEvent.java
1 /**********************************************************************
2 * Copyright (c) 2011, 2014 Ericsson
3 *
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
8 *
9 * Contributors:
10 * Bernd Hufmann - Initial API and implementation
11 **********************************************************************/
12 package org.eclipse.tracecompass.tmf.core.uml2sd;
13
14 import org.eclipse.tracecompass.tmf.core.timestamp.ITmfTimestamp;
15
16 /**
17 * <p>
18 * Interface for asynchronous sequence diagram events.
19 * </p>
20 *
21 * @author Bernd Hufmann
22 */
23 public interface ITmfAsyncSequenceDiagramEvent extends ITmfSyncSequenceDiagramEvent {
24 /**
25 * Returns end timestamp of message (i.e. receive time)
26 *
27 * @return end timestamp of message (i.e. receive time)
28 */
29 ITmfTimestamp getEndTime();
30 }
This page took 0.030941 seconds and 5 git commands to generate.