Let's say we have the following situation:
JPanel panelp=new JPanel();
paintSomething(panelp.getGraphics();
and somewhere else in a different object, the method:
void paintSomething(Graphics g){ /*code*/ }
I don't want to override paintComponent
method of panelp
. How can I paint something to panelp
from the method paintSomething
using the Graphics
of panelp
?