Rename xxx.lttng to xxx.lttng.core
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / impl / TmfAsyncMessage.java
1 /**********************************************************************
2 * Copyright (c) 2011 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.linuxtools.tmf.ui.views.uml2sd.impl;
13
14 /**
15 * <b><u>TmfAsyncMessage</u></b>
16 * <p>
17 * Extends AsyncMessage class to provide additional information about the trace event.
18 * </p>
19 */
20 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.core.AsyncMessage;
21 import org.eclipse.linuxtools.tmf.uml2sd.ITmfAsyncSequenceDiagramEvent;
22
23 public class TmfAsyncMessage extends AsyncMessage implements ITmfAsyncSequenceDiagramEvent {
24
25 // ------------------------------------------------------------------------
26 // Attributes
27 // ------------------------------------------------------------------------
28 protected ITmfAsyncSequenceDiagramEvent fSdEvent;
29
30 // ------------------------------------------------------------------------
31 // Constructors
32 // ------------------------------------------------------------------------
33 public TmfAsyncMessage(ITmfAsyncSequenceDiagramEvent sdEvent, int eventOccurrence) {
34 this.fSdEvent = sdEvent;
35 setEventOccurrence(eventOccurrence);
36 setName(sdEvent.getName());
37 setStartTime(sdEvent.getStartTime());
38 setEndTime(sdEvent.getEndTime());
39 }
40
41 // ------------------------------------------------------------------------
42 // Operations
43 // ------------------------------------------------------------------------
44
45 /*
46 * (non-Javadoc)
47 * @see org.eclipse.linuxtools.ust.examples.event.ISequenceDiagramEvent#getSender()
48 */
49 @Override
50 public String getSender() {
51 return fSdEvent.getSender();
52 }
53
54 /*
55 * (non-Javadoc)
56 * @see org.eclipse.linuxtools.ust.examples.event.ISequenceDiagramEvent#getReceiver()
57 */
58 @Override
59 public String getReceiver() {
60 return fSdEvent.getReceiver();
61 }
62 }
This page took 0.03072 seconds and 5 git commands to generate.