Move alltests plugin to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / linuxtools / tmf / core / trace / indexer / TmfFlatArrayTraceIndexer.java
CommitLineData
032ecd45
MAL
1/*******************************************************************************
2 * Copyright (c) 2013 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
13package org.eclipse.linuxtools.tmf.core.trace.indexer;
14
15import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace;
16import org.eclipse.linuxtools.tmf.core.trace.indexer.checkpoint.ITmfCheckpointIndex;
17import org.eclipse.linuxtools.tmf.core.trace.indexer.checkpoint.TmfCheckpointIndexer;
18
19/**
20 * An indexer that uses a FlatArray index to store checkpoints
21 *
22 * @since 3.0
23 * @author Marc-Andre Laperle
24 */
25public class TmfFlatArrayTraceIndexer extends TmfCheckpointIndexer {
26
27 /**
28 * Full trace indexer
29 *
30 * @param trace
31 * the trace to index
32 * @param interval
33 * the checkpoints interval
34 */
35 public TmfFlatArrayTraceIndexer(ITmfTrace trace, int interval) {
36 super(trace, interval);
37 }
38
39 @Override
40 protected ITmfCheckpointIndex createIndex(ITmfTrace trace) {
41 return new TmfFlatArrayTraceIndex(trace);
42 }
43}
This page took 0.044615 seconds and 5 git commands to generate.