temporary re-factoring project
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng / src / org / eclipse / linuxtools / lttng / state / model / ILttngStateInputRef.java
1 /*******************************************************************************
2 * Copyright (c) 2009 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 * Alvaro Sanchez-Leon (alvsan09@gmail.com) - Initial API and implementation
11 *******************************************************************************/
12 package org.eclipse.linuxtools.lttng.state.model;
13
14 import org.eclipse.linuxtools.tmf.event.TmfTimeRange;
15
16 /**
17 * <b><u>ILttngStateModelInput</u></b>
18 * <p>Interface providing the data needed by the State model
19 *
20 */
21
22 /**
23 * @author alvaro
24 *
25 */
26 public interface ILttngStateInputRef {
27
28 public int getNumberOfCpus();
29 public TmfTimeRange getTraceTimeWindow();
30 public String getTraceId();
31 public TmfTimeRange getExperimentTimeWindow();
32
33 }
This page took 0.032743 seconds and 5 git commands to generate.