How to draw lines between JLabels on a JPanel?

Submitted by: Administrator
You are apparently trying to draw a graph by using normal widgets to draw the nodes of your graph. This is not a good idea. Consider using the Java 2D API (nowadays part of J2SE) to draw the complete graph. Have a look at java.awt.geom for predefined shapes. Also check out Sun's 2D Programmer's Guide
Submitted by: Administrator

Read Online Java GUI Framework Job Interview Questions And Answers