blob: ce444c87f2ea66671ee3b5743598bce51c6661b6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2007 IBM Corporation and others.
* 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
*
*******************************************************************************/
package org.eclipse.dltk.ui.text;
import org.eclipse.swt.graphics.RGB;
public interface IColorManagerExtension {
/**
* Remembers the given color specification under the given key.
*
* @param key the color key
* @param rgb the color specification
* @throws java.lang.UnsupportedOperationException if there is already a
* color specification remembered under the given key
*/
void bindColor(String key, RGB rgb);
/**
* Forgets the color specification remembered under the given key.
*
* @param key the color key
*/
void unbindColor(String key);
}