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