Re-structure LTTng sub-project as per the Linux Tools guidelines
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / impl / TmfAsyncMessage.java
CommitLineData
73005152
BH
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 **********************************************************************/
12package 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 */
6c13869b 20import org.eclipse.linuxtools.tmf.core.uml2sd.ITmfAsyncSequenceDiagramEvent;
73005152 21import org.eclipse.linuxtools.tmf.ui.views.uml2sd.core.AsyncMessage;
73005152
BH
22
23public 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.027975 seconds and 5 git commands to generate.