-
Bug
-
Resolution: Unresolved
-
P4
-
None
-
1.4.0
-
sparc
-
solaris_7
Name: sdR10048 Date: 06/26/2002
JDK1.4.0rc-b92 documentation for
java.awt.TextComponent.getBackground() says nothing about the
default value if setBackground(Color) has not been called before
and the component does not have parent.
JDK doc says:
-------------
public Color getBackground()
Gets the background color of this text component.
By default, non-editable text components have a background color
of SystemColor.control. This default can be overridden
by calling setBackground.
Overrides:
getBackground in class Component
Returns:
This text component's background color.
If this text component does not have a background color,
the background color of its parent is returned.
-------------
public void setBackground(Color c)
Sets the background color of this text component.
Overrides:
setBackground in class Component
Parameters:
c - The color to become this text component's color.
If this parameter is null then this text component
will inherit the background color of its parent.
-------------
======================================================================