Copyright header update, 2015 edition
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / views / distribution / model / IBaseDistributionModel.java
1 /*******************************************************************************
2 * Copyright (c) 2011, 2014 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 * Bernd Hufmann - Initial API and implementation
11 * Francois Chouinard - Moved from LTTng to TMF
12 *******************************************************************************/
13
14 package org.eclipse.tracecompass.tmf.ui.views.distribution.model;
15
16 /**
17 * Base distribution model interface.
18 *
19 * Distribution models such histograms need to implement this interface.
20 *
21 * @version 1.0
22 * @author Bernd Hufmann
23 *
24 */
25 public interface IBaseDistributionModel {
26 /**
27 * Complete the model (all data received)
28 */
29 void complete();
30
31 /**
32 * Clear the model (delete all data).
33 */
34 void clear();
35 }
This page took 0.031762 seconds and 5 git commands to generate.