/********************************************************************** * Copyright (c) 2011, 2013 Ericsson * * All rights reserved. This program and the accompanying materials are * made available under the terms of the Eclipse Public License v1.0 which * accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Bernd Hufmann - Initial API and implementation **********************************************************************/ package fr.inria.linuxtools.tmf.core.uml2sd; import fr.inria.linuxtools.tmf.core.timestamp.ITmfTimestamp; /** * <p> * Interface for asynchronous sequence diagram events. * </p> * * @version 1.0 * @author Bernd Hufmann */ public interface ITmfAsyncSequenceDiagramEvent extends ITmfSyncSequenceDiagramEvent { /** * Returns end timestamp of message (i.e. receive time) * * @return end timestamp of message (i.e. receive time) * @since 2.0 */ ITmfTimestamp getEndTime(); }