Move legacy time analysis widget to lttng.ui and create initial copy in
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / widgets / timegraph / model / TimeEvent.java
1 /*******************************************************************************
2 * Copyright (c) 2009 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 * Alvaro Sanchez-Leon - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.ui.widgets.timegraph.model;
14
15
16 public abstract class TimeEvent implements ITimeEvent {
17 /* (non-Javadoc)
18 * @see org.eclipse.linuxtools.tlf.widgets.timeAnalysis.model.TmTaEventI#getTrace()
19 */
20 @Override
21 public abstract ITmfTimeAnalysisEntry getEntry();
22
23 /* (non-Javadoc)
24 * @see org.eclipse.linuxtools.tlf.widgets.timeAnalysis.model.TmTaEventI#getTime()
25 */
26 @Override
27 public abstract long getTime();
28
29 /* (non-Javadoc)
30 * @see org.eclipse.linuxtools.tlf.widgets.timeAnalysis.model.TmTaEventI#getDuration()
31 */
32 @Override
33 public long getDuration() {
34 return -1;
35 }
36 }
This page took 0.0474 seconds and 6 git commands to generate.