I learned that repaint() wasn’t an actual method that repaints the screen. Rather, it is a request to the JVM to do that. However, out of curiosity and for future references, is there a way to take the repainting task into your own hands so that you could stack a bunch of repainting functions near each other without worrying about coalescence?
I learned that repaint() wasn’t an actual method that repaints the screen. Rather, it
Share
If I understand you correctly, you could implement your own
RepaintManager.