TMF: TimeGraphPresentationProvider can notify listeners of color change
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / widgets / timegraph / ITimeGraphColorListener.java
1 /*******************************************************************************
2 * Copyright (c) 2013 École Polytechnique de Montréal
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 * Geneviève Bastien - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.ui.widgets.timegraph;
14
15 /**
16 * A time graph state color change listener
17 *
18 * @author Geneviève Bastien
19 */
20 public interface ITimeGraphColorListener {
21
22 /**
23 * Notify the listener that the presentation provider's color may have
24 * changed and they need to be reloaded
25 *
26 * @param stateItems
27 * The new state table
28 */
29 void colorSettingsChanged(StateItem[] stateItems);
30
31 }
This page took 0.040183 seconds and 5 git commands to generate.