ss: Move plugins to Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / widgets / timegraph / ITimeGraphColorListener.java
CommitLineData
496f76d3
GB
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
13package org.eclipse.linuxtools.tmf.ui.widgets.timegraph;
14
15/**
16 * A time graph state color change listener
17 *
18 * @author Geneviève Bastien
c4767854 19 * @since 3.0
496f76d3
GB
20 */
21public interface ITimeGraphColorListener {
22
23 /**
24 * Notify the listener that the presentation provider's color may have
25 * changed and they need to be reloaded
26 *
27 * @param stateItems
28 * The new state table
29 */
30 void colorSettingsChanged(StateItem[] stateItems);
31
32}
This page took 0.038706 seconds and 5 git commands to generate.