tmf: fix sonar warnings about redundant modifier in interfaces
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / uml2sd / ITmfAsyncSequenceDiagramEvent.java
CommitLineData
73005152 1/**********************************************************************
61759503 2 * Copyright (c) 2011, 2013 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 **********************************************************************/
6c13869b 12package org.eclipse.linuxtools.tmf.core.uml2sd;
73005152 13
3bd46eef 14import org.eclipse.linuxtools.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 * @version 1.0
22 * @author Bernd Hufmann
23 */
73005152
BH
24public interface ITmfAsyncSequenceDiagramEvent extends ITmfSyncSequenceDiagramEvent {
25 /**
df0b8ff4 26 * Returns end timestamp of message (i.e. receive time)
3bd46eef 27 *
df0b8ff4 28 * @return end timestamp of message (i.e. receive time)
3bd46eef 29 * @since 2.0
73005152 30 */
57a2a5ca 31 ITmfTimestamp getEndTime();
73005152 32}
This page took 0.053804 seconds and 5 git commands to generate.