Interface IColorManagerExtension


  • public interface IColorManagerExtension
    Extends IColorManager with the ability to bind and un-bind colors.
    Since:
    2.0
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void bindColor​(java.lang.String key, RGB rgb)
      Remembers the given color specification under the given key.
      void unbindColor​(java.lang.String key)
      Forgets the color specification remembered under the given key.
    • Method Detail

      • bindColor

        void bindColor​(java.lang.String key,
                       RGB rgb)
        Remembers the given color specification under the given key.
        Parameters:
        key - the color key
        rgb - the color specification
        Throws:
        java.lang.UnsupportedOperationException - if there is already a color specification remembered under the given key
      • unbindColor

        void unbindColor​(java.lang.String key)
        Forgets the color specification remembered under the given key.
        Parameters:
        key - the color key