tmf: formatting of tmf.ui.statistics
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / statistics / model / TmfStatistics.java
CommitLineData
79e08fd0 1/*******************************************************************************
b544077e 2 * Copyright (c) 2011, 2012 Ericsson
013a5f1c 3 *
79e08fd0
BH
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
013a5f1c 8 *
79e08fd0 9 * Contributors:
09667aa4 10 * Mathieu Denis <mathieu.denis@polymtl.ca> - Intial API and Implementation
79e08fd0
BH
11 *******************************************************************************/
12
13package org.eclipse.linuxtools.tmf.ui.views.statistics.model;
14
15/**
013a5f1c
AM
16 * Primitive container for Statistics data
17 *
09667aa4
MD
18 * Contains information about statistics that can be retrieved with any type of
19 * traces
013a5f1c 20 *
b544077e
BH
21 * @version 1.0
22 * @author Mathieu Denis
79e08fd0
BH
23 */
24public class TmfStatistics {
09667aa4
MD
25 /**
26 * Number of events.
27 */
28 public long nbEvents = 0;
79e08fd0 29}
This page took 0.031377 seconds and 5 git commands to generate.