analysis: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / widgets / timegraph / model / NullTimeEvent.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.widgets.timegraph.model;
14
15 /**
16 * A null time event. Used to represent an event that should not be drawn,
17 * for example as a zoomed event that overshadows an underlying event.
18 */
19 public class NullTimeEvent extends TimeEvent {
20
21 /**
22 * Standard constructor
23 *
24 * @param entry
25 * The entry matching this event
26 * @param time
27 * The timestamp of this event
28 * @param duration
29 * The duration of the event
30 */
31 public NullTimeEvent(ITimeGraphEntry entry, long time, long duration) {
32 super(entry, time, duration);
33 }
34
35 }
This page took 0.03104 seconds and 5 git commands to generate.