ss: Move plugins to Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / uml2sd / TmfAsyncSequenceDiagramEvent.java
CommitLineData
73005152 1/**********************************************************************
61759503 2 * Copyright (c) 2011, 2013 Ericsson
6256d8ad 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
6256d8ad
AM
8 *
9 * Contributors:
73005152
BH
10 * Bernd Hufmann - Initial API and implementation
11 **********************************************************************/
6c13869b 12package org.eclipse.linuxtools.tmf.core.uml2sd;
73005152 13
58b21093 14import org.eclipse.linuxtools.tmf.core.event.ITmfEvent;
3bd46eef 15import org.eclipse.linuxtools.tmf.core.timestamp.ITmfTimestamp;
73005152
BH
16
17/**
73005152 18 * <p>
df0b8ff4 19 * A basic implementation of ITmfAsyncSequenceDiagramEvent.
73005152 20 * </p>
6256d8ad 21 *
df0b8ff4
BH
22 * @version 1.0
23 * @author Bernd Hufmann
73005152
BH
24 */
25public class TmfAsyncSequenceDiagramEvent extends TmfSyncSequenceDiagramEvent implements ITmfAsyncSequenceDiagramEvent {
26
27 // ------------------------------------------------------------------------
28 // Attributes
29 // ------------------------------------------------------------------------
df0b8ff4
BH
30 /**
31 * The end time of the sequence diagram event (i.e. time when signal was received).
32 */
cab6c8ff 33 private final ITmfTimestamp fEndTime;
6256d8ad 34
73005152
BH
35 // ------------------------------------------------------------------------
36 // Constructors
df0b8ff4
BH
37 // ------------------------------------------------------------------------
38 /**
39 * Constructor
6256d8ad 40 *
df0b8ff4
BH
41 * @param startEvent The start event (on sender side).
42 * @param endEvent The end event (receiver side).
43 * @param sender The name of sender of signal.
44 * @param receiver The Name of receiver of signal.
45 * @param name - The signal name
46 */
58b21093 47 public TmfAsyncSequenceDiagramEvent(ITmfEvent startEvent, ITmfEvent endEvent, String sender, String receiver, String name) {
73005152 48 super(startEvent, sender, receiver, name);
6256d8ad 49
73005152
BH
50 if (endEvent == null) {
51 throw new IllegalArgumentException("TmfAsyncSequenceDiagramEvent constructor: endEvent=null"); //$NON-NLS-1$
52 }
4593bd5b 53 fEndTime = endEvent.getTimestamp();
73005152
BH
54 }
55
56 // ------------------------------------------------------------------------
57 // Operations
6256d8ad 58 // ------------------------------------------------------------------------
73005152 59
3bd46eef
AM
60 /**
61 * @since 2.0
73005152
BH
62 */
63 @Override
4df4581d 64 public ITmfTimestamp getEndTime() {
73005152
BH
65 return fEndTime;
66 }
67}
This page took 0.07478 seconds and 5 git commands to generate.