tmf: Make CustomText/Xml test wait until wizard shell is active
[deliverable/tracecompass.git] / statesystem / org.eclipse.tracecompass.statesystem.core / src / org / eclipse / tracecompass / statesystem / core / interval / ITmfStateInterval.java
CommitLineData
a52fde77 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2012, 2014 Ericsson
2cb26548 3 *
a52fde77
AM
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
2cb26548 8 *
a52fde77
AM
9 * Contributors:
10 * Alexandre Montplaisir - Initial API
11 ******************************************************************************/
12
e894a508 13package org.eclipse.tracecompass.statesystem.core.interval;
a52fde77 14
e894a508 15import org.eclipse.tracecompass.statesystem.core.statevalue.ITmfStateValue;
a52fde77
AM
16
17/**
18 * This is the basic interface for accessing state intervals. See
19 * StateInterval.java for a basic implementation.
2cb26548 20 *
a52fde77
AM
21 * A StateInterval is meant to be immutable. All implementing (non-abstract)
22 * classes should ideally be marked as 'final'.
2cb26548 23 *
2cb26548 24 * @author Alexandre Montplaisir
a52fde77
AM
25 */
26public interface ITmfStateInterval {
27
28 /**
29 * Retrieve the start time of the interval
2cb26548 30 *
0d9a6d76 31 * @return the start time of the interval
a52fde77 32 */
57a2a5ca 33 long getStartTime();
a52fde77
AM
34
35 /**
36 * Retrieve the end time of the interval
2cb26548 37 *
0d9a6d76 38 * @return the end time of the interval
a52fde77 39 */
57a2a5ca 40 long getEndTime();
a52fde77
AM
41
42 /**
43 * Retrieve the quark of the attribute this state interval refers to
2cb26548 44 *
0d9a6d76 45 * @return the quark of the attribute this state interval refers to
a52fde77 46 */
57a2a5ca 47 int getAttribute();
a52fde77
AM
48
49 /**
50 * Retrieve the state value represented by this interval
2cb26548 51 *
0d9a6d76 52 * @return the state value represented by this interval
a52fde77 53 */
57a2a5ca 54 ITmfStateValue getStateValue();
a52fde77
AM
55
56 /**
57 * Test if this interval intersects another timestamp, inclusively.
2cb26548 58 *
a52fde77
AM
59 * @param timestamp
60 * The target timestamp
61 * @return True if the interval and timestamp intersect, false if they don't
62 */
57a2a5ca 63 boolean intersects(long timestamp);
a52fde77 64}
This page took 0.089099 seconds and 5 git commands to generate.