Interface IColorManager

All Superinterfaces:
org.eclipse.jface.text.source.ISharedTextColors

public interface IColorManager extends org.eclipse.jface.text.source.ISharedTextColors
Manages SWT color objects for the given color keys and given RGB objects. Until the dispose method is called, the same color object is returned for equal keys and equal RGB values.

In order to provide backward compatibility for clients of IColorManager, extension interfaces are used to provide a means of evolution. The following extension interfaces exist:

This interface may be implemented by clients.

See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    org.eclipse.swt.graphics.Color
    Returns a color object for the given key.

    Methods inherited from interface org.eclipse.jface.text.source.ISharedTextColors

    dispose, getColor
  • Method Details

    • getColor

      org.eclipse.swt.graphics.Color getColor(String key)
      Returns a color object for the given key. The color objects are remembered internally; the same color object is returned for equal keys.
      Parameters:
      key - the color key
      Returns:
      the color object for the given key