What does super.paintComponent(g) do?
graphics, java, swing
Solution
- What does it do?
It prints the component as if you hadn't overridden the `paintComponent` method. If you have a background color set for instance, this is typically painted by the class you're extending.
- When do we need to use it?
You use it if you don't paint on the entire component. The parts that you don't paint will "shine through" which means that you should let the super class paint those parts. As with the example of the background color for instance: If you just paint a circle in the middle of the component, `super.paintComponent` will make sure the background color is painted around the circle.
If you do paint the entire area of your component, then you will paint on top of whatever super.paintComponent paints and thus there's no point in calling super.paintComponent.
- What advantage does it gives us by writing it in paintComponent()?
That's the only logical place to put it. `paintComponent` is called when the component should be painted, and, as mentioned above, if you don't paint the entire component yourself, you need `super.paintComponent` to paint on the parts that shine through.
The documentation of `paintComponent` says it pretty well:
[...] if you do not invoker super's implementation you must honor the opaque property, that is if this component is opaque, you must completely fill in the background in a non-opaque color. If you do not honor the opaque property you will likely see visual artifacts.
Problem
What does `super.paintComponent(g)` do (especially when we place it inside paintComponent() method)? I am surprised I don't see anyone asking this in SO before. I dig out my school notes on Java Graphics, the only thing it mentioned on this line of code is `"do not delete"`. However I have been practicing and tying out on Java paintComponent() method these few weeks. So far I have not included that line into my codes, and everything seems to work well (so far). So.. Questions: - What does it do? - When do we need to use it? - What advantage does it gives us by writing it in paintComponent()?