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
CommitLineData
b0d3496e
ASL
1/*******************************************************************************\r
2 * Copyright (c) 2009 Ericsson\r
3 * \r
4 * All rights reserved. This program and the accompanying materials are\r
5 * made available under the terms of the Eclipse Public License v1.0 which\r
6 * accompanies this distribution, and is available at\r
7 * http://www.eclipse.org/legal/epl-v10.html\r
8 * \r
9 * Contributors:\r
10 * Alvaro Sanchez-Leon - Initial API and implementation\r
11 *******************************************************************************/\r
12\r
2fa130b8
PT
13package org.eclipse.linuxtools.tmf.ui.widgets.timegraph.model;\r
14\r
b0d3496e
ASL
15\r
16public abstract class TimeEvent implements ITimeEvent {\r
17 /* (non-Javadoc)\r
18 * @see org.eclipse.linuxtools.tlf.widgets.timeAnalysis.model.TmTaEventI#getTrace()\r
19 */\r
d4011df2 20 @Override\r
b0d3496e
ASL
21 public abstract ITmfTimeAnalysisEntry getEntry();\r
22 \r
23 /* (non-Javadoc)\r
24 * @see org.eclipse.linuxtools.tlf.widgets.timeAnalysis.model.TmTaEventI#getTime()\r
25 */\r
d4011df2 26 @Override\r
b0d3496e
ASL
27 public abstract long getTime();\r
28 \r
29 /* (non-Javadoc)\r
30 * @see org.eclipse.linuxtools.tlf.widgets.timeAnalysis.model.TmTaEventI#getDuration()\r
31 */\r
d4011df2 32 @Override\r
b0d3496e
ASL
33 public long getDuration() {\r
34 return -1;\r
35 }\r
36}\r
This page took 0.044937 seconds and 5 git commands to generate.