Container.paint

Container.paint

Class Overview | Class Members | This Package | All Packages

Syntax
public void paint( Graphics g )
Parameters
g
the specified Graphics window
Description
Paints the container. This forwards the paint to any lightweight components that are children of this container. If this method is reimplemented, super.paint(g) should be called so that lightweight components are properly rendered. If a child component is entirely clipped by the current clipping setting in g, paint() will not be forwarded to that child.

Overrides
paint in class Component
See Also
update