missing java.awt.SystemColor.gradientActiveCaption

I am missing the static fields gradientActiveCaption and SystemColor.gradientInactiveCaption in the class SystemColor of javas awt package. These values could be null if this information is not available.

also see: msdn about windows system colors

One Response to “missing java.awt.SystemColor.gradientActiveCaption”

  1. Administrator says:

    I think filing a bug at bugs.sun.com was a little bit overhasty, since these information is available using javax.swing.UIManager:


    UIManager.getColor("InternalFrame.activeTitleGradient");
    UIManager.getColor("InternalFrame.inactiveTitleGradient");

    *embarrassed*
    There should be really a possibility to cancel bugs, that where filed by accident.