analysis: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / trace / indexer / TmfFlatArrayTraceIndexer.java
1 /*******************************************************************************
2 * Copyright (c) 2013, 2014 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 * Marc-Andre Laperle - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.tmf.core.trace.indexer;
14
15 import org.eclipse.tracecompass.tmf.core.trace.ITmfTrace;
16 import org.eclipse.tracecompass.tmf.core.trace.indexer.checkpoint.ITmfCheckpointIndex;
17 import org.eclipse.tracecompass.tmf.core.trace.indexer.checkpoint.TmfCheckpointIndexer;
18
19 /**
20 * An indexer that uses a FlatArray index to store checkpoints
21 *
22 * @author Marc-Andre Laperle
23 */
24 public class TmfFlatArrayTraceIndexer 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 TmfFlatArrayTraceIndexer(ITmfTrace trace, int interval) {
35 super(trace, interval);
36 }
37
38 @Override
39 protected ITmfCheckpointIndex createIndex(ITmfTrace trace) {
40 return new TmfFlatArrayTraceIndex(trace);
41 }
42 }
This page took 0.038658 seconds and 5 git commands to generate.