tmf: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / widgets / timegraph / model / NullTimeEvent.java
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
13 package org.eclipse.linuxtools.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 * @since 2.0
20 */
21 public class NullTimeEvent extends TimeEvent {
22
23 /**
24 * Standard constructor
25 *
26 * @param entry
27 * The entry matching this event
28 * @param time
29 * The timestamp of this event
30 * @param duration
31 * The duration of the event
32 */
33 public NullTimeEvent(ITimeGraphEntry entry, long time, long duration) {
34 super(entry, time, duration);
35 }
36
37 }
This page took 0.03813 seconds and 5 git commands to generate.