Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandre Montplaisir2013-02-14 16:37:10 +0000
committerAlexandre Montplaisir2013-02-25 21:19:02 +0000
commit916ab7577ce162b5a90cc09024a72028198ba40c (patch)
tree6bd024e0a00a67091ed5ce8a40ab6b0f419d6f02 /lttng/org.eclipse.linuxtools.tmf.core.tests/src/org/eclipse/linuxtools/tmf/core/tests/trace/TmfLocationTest.java
parentf3a8dc1736df855ee6d1278124a57f9a7a763245 (diff)
downloadorg.eclipse.linuxtools-916ab7577ce162b5a90cc09024a72028198ba40c.tar.gz
org.eclipse.linuxtools-916ab7577ce162b5a90cc09024a72028198ba40c.tar.xz
org.eclipse.linuxtools-916ab7577ce162b5a90cc09024a72028198ba40c.zip
tmf: Move timestamps to their own package
Eventually, for trace synchronization among other things, we will need to use trace-specific timestamp factories. It will be much better organized if timestamps have their own package (they are not specific to events anyway). The trace sync/timestamp factory rework is really big, and it probably won't make Kepler. However, doing this move right now will allow us to introduce timestamp factories and the such post-Kepler, without breaking the 2.0 API. Change-Id: Iffe4dc4758d9e0627f78aad6cbd9c6013097f800 Signed-off-by: Alexandre Montplaisir <alexmonthy@voxpopuli.im> Reviewed-on: https://git.eclipse.org/r/10496 Tested-by: Hudson CI Reviewed-by: Bernd Hufmann <bhufmann@gmail.com> IP-Clean: Bernd Hufmann <bhufmann@gmail.com>
Diffstat (limited to 'lttng/org.eclipse.linuxtools.tmf.core.tests/src/org/eclipse/linuxtools/tmf/core/tests/trace/TmfLocationTest.java')
-rw-r--r--lttng/org.eclipse.linuxtools.tmf.core.tests/src/org/eclipse/linuxtools/tmf/core/tests/trace/TmfLocationTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/lttng/org.eclipse.linuxtools.tmf.core.tests/src/org/eclipse/linuxtools/tmf/core/tests/trace/TmfLocationTest.java b/lttng/org.eclipse.linuxtools.tmf.core.tests/src/org/eclipse/linuxtools/tmf/core/tests/trace/TmfLocationTest.java
index 7306294668..9be8cc8488 100644
--- a/lttng/org.eclipse.linuxtools.tmf.core.tests/src/org/eclipse/linuxtools/tmf/core/tests/trace/TmfLocationTest.java
+++ b/lttng/org.eclipse.linuxtools.tmf.core.tests/src/org/eclipse/linuxtools/tmf/core/tests/trace/TmfLocationTest.java
@@ -18,7 +18,7 @@ import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
-import org.eclipse.linuxtools.tmf.core.event.TmfTimestamp;
+import org.eclipse.linuxtools.tmf.core.timestamp.TmfTimestamp;
import org.eclipse.linuxtools.tmf.core.trace.ITmfLocation;
import org.eclipse.linuxtools.tmf.core.trace.TmfLongLocation;
import org.eclipse.linuxtools.tmf.core.trace.TmfTimestampLocation;

Back to the top