Skip to main content
summaryrefslogtreecommitdiffstats
blob: d1585a55123c507fee401dcdb50713fd1fcce98c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*******************************************************************************
 * Copyright (c) 2013 Mia-Software.
 * 
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.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.emf.facet.util.swt.colorprovider;

import org.eclipse.emf.facet.util.swt.internal.colorprovider.ColorProviderFactory;
import org.eclipse.swt.graphics.Device;

public interface IColorProviderFactory {

	IColorProviderFactory DEFAULT = new ColorProviderFactory();
	
	IColorProvider getOrCreateIColorProvider(Device device);
}

Back to the top