blob: e4460137a6bd04945c8222b5eae28e6f973bfcd9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2019 Mia-Software.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Grégoire Dupé (Mia-Software) - Bug 424122 - [Table] Images, fonts and colors are not shared between the instances of table
******************************************************************************/
package org.eclipse.modisco.facet.util.swt.colorprovider;
import org.eclipse.modisco.facet.util.swt.internal.colorprovider.ColorProviderFactory;
import org.eclipse.swt.graphics.Device;
public interface IColorProviderFactory {
IColorProviderFactory DEFAULT = new ColorProviderFactory();
IColorProvider getOrCreateIColorProvider(Device device);
}