blob: 90d11bb6c0c9cba4ca6d5abf8207e657871609ae [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2014 École Polytechnique de Montréal
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Geneviève Bastien - Initial API and implementation
*******************************************************************************/
package org.eclipse.tracecompass.tmf.ui.widgets.timegraph;
/**
* A time graph state color change listener
*
* @author Geneviève Bastien
*/
public interface ITimeGraphColorListener {
/**
* Notify the listener that the presentation provider's color may have
* changed and they need to be reloaded
*
* @param stateItems
* The new state table
*/
void colorSettingsChanged(StateItem[] stateItems);
}