Remove all existing @since annotations
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / views / uml2sd / core / ITimeRange.java
1 /**********************************************************************
2 * Copyright (c) 2005, 2014 IBM Corporation, Ericsson
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM - Initial API and implementation
10 * Bernd Hufmann - Updated for TMF
11 **********************************************************************/
12
13 package org.eclipse.tracecompass.tmf.ui.views.uml2sd.core;
14
15 import org.eclipse.tracecompass.tmf.core.timestamp.ITmfTimestamp;
16
17 /**
18 * A interface for handling time ranges.
19 *
20 * @author sveyrier
21 */
22 public interface ITimeRange {
23
24 /**
25 * Returns the time when the message began.
26 * @return the time when the message began
27 */
28 ITmfTimestamp getStartTime();
29
30 /**
31 * Returns the time when the message ended.
32 *
33 * @return the time when the message ended
34 */
35 ITmfTimestamp getEndTime();
36
37 /**
38 * Returns flag to indicate whether time information is available or not.
39 *
40 * @return flag to indicate whether time information is available or not
41 */
42 boolean hasTimeInfo();
43 }
This page took 0.030615 seconds and 5 git commands to generate.