I'd like to know how you are supposed to override a paint method for each panel in the same class and how to call them separately?
I only know about the repaint() call when you are in a class that extends JPanel (so in only one panel), not when you just make panels.
Thanks in advance.
Typically you create a class that extends
JPanel
to override thepaintComponent
method:You might consider creating a nested class like so:
Or you can do this without creating a class that extends
JPanel
: