Remove all existing @since annotations
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / trace / indexer / TmfBTreeTraceIndexer.java
CommitLineData
032ecd45 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2013, 2014 Ericsson
032ecd45
MAL
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 * Marc-Andre Laperle - Initial API and implementation
11 *******************************************************************************/
12
2bdf0193 13package org.eclipse.tracecompass.tmf.core.trace.indexer;
032ecd45 14
2bdf0193
AM
15import org.eclipse.tracecompass.tmf.core.trace.ITmfTrace;
16import org.eclipse.tracecompass.tmf.core.trace.indexer.checkpoint.ITmfCheckpointIndex;
17import org.eclipse.tracecompass.tmf.core.trace.indexer.checkpoint.TmfCheckpointIndexer;
032ecd45
MAL
18
19/**
20 * An indexer that uses a Btree index to store checkpoints
21 *
032ecd45
MAL
22 * @author Marc-Andre Laperle
23 */
24public class TmfBTreeTraceIndexer extends TmfCheckpointIndexer {
25
26 /**
27 * Full trace indexer
28 *
29 * @param trace
30 * the trace to index
31 * @param interval
32 * the checkpoints interval
33 */
34 public TmfBTreeTraceIndexer(ITmfTrace trace, int interval) {
35 super(trace, interval);
36 }
37
38 @Override
39 protected ITmfCheckpointIndex createIndex(ITmfTrace trace) {
40 return new TmfBTreeTraceIndex(trace);
41 }
42}
This page took 0.087106 seconds and 5 git commands to generate.