tmf: Update copyright headers in tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / loader / TmfSyncMessage.java
1 /**********************************************************************
2 * Copyright (c) 2011, 2012 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
13 package org.eclipse.linuxtools.tmf.ui.views.uml2sd.loader;
14
15 import org.eclipse.linuxtools.tmf.core.uml2sd.ITmfSyncSequenceDiagramEvent;
16 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.core.SyncMessage;
17
18
19 /**
20 * <p>
21 * Extends SyncMessage class to provide additional information about the trace event.
22 * </p>
23 *
24 * @version 1.0
25 * @author Bernd Hufmann
26 */
27 public class TmfSyncMessage extends SyncMessage implements ITmfSyncSequenceDiagramEvent {
28
29 // ------------------------------------------------------------------------
30 // Attributes
31 // ------------------------------------------------------------------------
32 /**
33 * A synchronous sequence diagram event implementation
34 */
35 protected ITmfSyncSequenceDiagramEvent fSdEvent;
36
37 // ------------------------------------------------------------------------
38 // Constructors
39 // ------------------------------------------------------------------------
40 /**
41 * Standard constructor
42 *
43 * @param sdEvent The synchronous sequence diagram event implementation
44 * @param eventOccurrence The event index
45 */
46 public TmfSyncMessage(ITmfSyncSequenceDiagramEvent sdEvent, int eventOccurrence) {
47 this.fSdEvent = sdEvent;
48 setEventOccurrence(eventOccurrence);
49 setName(sdEvent.getName());
50 setTime(sdEvent.getStartTime());
51 }
52
53 // ------------------------------------------------------------------------
54 // Methods
55 // ------------------------------------------------------------------------
56 /*
57 * (non-Javadoc)
58 * @see org.eclipse.linuxtools.ust.examples.event.ISequenceDiagramEvent#getSender()
59 */
60 @Override
61 public String getSender() {
62 return fSdEvent.getSender();
63 }
64
65 /*
66 * (non-Javadoc)
67 * @see org.eclipse.linuxtools.ust.examples.event.ISequenceDiagramEvent#getReceiver()
68 */
69 @Override
70 public String getReceiver() {
71 return fSdEvent.getReceiver();
72 }
73 }
This page took 0.051139 seconds and 5 git commands to generate.