b6643991a3d14ea00240c44ae8d7c29f6f5ab2cf
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.ui / src / org / eclipse / linuxtools / lttng / ui / views / latency / model / IGraphModelListener.java
1 /*******************************************************************************
2 * Copyright (c) 2011 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 *******************************************************************************/
12
13 package org.eclipse.linuxtools.lttng.ui.views.latency.model;
14
15 /**
16 * <b><u>IGraphModelListener</u></b>
17 * <p>
18 */
19 public interface IGraphModelListener {
20
21 /**
22 * Method to notify listeners about model updates
23 */
24 public void graphModelUpdated();
25
26 /**
27 * Method to inform listeners about current time updates
28 */
29 public void currentEventUpdated(long currentEventTime);
30
31 }
This page took 0.03029 seconds and 4 git commands to generate.