tmf: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / callstack / CallStackEvent.java
CommitLineData
e8251298
PT
1/*******************************************************************************
2 * Copyright (c) 2013 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 * Patrick Tasse - Initial API and implementation
11 *******************************************************************************/
12
13package org.eclipse.linuxtools.tmf.ui.views.callstack;
14
15import org.eclipse.linuxtools.tmf.ui.widgets.timegraph.model.TimeEvent;
16
17/**
18 * Time Event implementation specific to the Call Stack View
19 *
20 * @author Patrick Tasse
21 * @since 2.0
22 */
23public class CallStackEvent extends TimeEvent {
24
e8251298
PT
25 /**
26 * Standard constructor
27 *
28 * @param entry
29 * The entry that this event affects
30 * @param time
31 * The start time of the event
32 * @param duration
33 * The duration of the event
34 * @param value
35 * The event value (1-256)
36 */
37 public CallStackEvent(CallStackEntry entry, long time, long duration, int value) {
beb1b921 38 super(entry, time, duration, value);
e8251298
PT
39 }
40}
This page took 0.047813 seconds and 5 git commands to generate.