segStore: Add a history tree segment store
[deliverable/tracecompass.git] / statesystem / org.eclipse.tracecompass.segmentstore.core / src / org / eclipse / tracecompass / internal / provisional / segmentstore / core / ISegment2.java
1 /*******************************************************************************
2 * Copyright (c) 2016 École Polytechnique de Montréal
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
10 package org.eclipse.tracecompass.internal.provisional.segmentstore.core;
11
12 import org.eclipse.tracecompass.internal.provisional.datastore.core.interval.IHTInterval;
13 import org.eclipse.tracecompass.segmentstore.core.ISegment;
14
15 /**
16 * This is a segment that can be saved in a history tree backend
17 *
18 * Note: It should be ISegment, but that would be API breaking, so this
19 * interface was added so a segment can be both segment and history tree object.
20 *
21 * FIXME: Move that to ISegment when breaking the API
22 *
23 * @author Geneviève Bastien
24 * @since 1.2
25 */
26 public interface ISegment2 extends ISegment, IHTInterval {
27
28 }
This page took 0.031902 seconds and 6 git commands to generate.