Joon Cho Java Swing
Joon Cho Java Swing
Joon Ho Cho
JLabel developerNameLabel = new javax.swing.JLabel(); developerNameLabel.setFont(new java.awt.Font("Arial", 0, 14)); developerNameLabel.setForeground(new java.awt.Color(255, 255, 255));
5. Error prevention
First of all, Java is a strongly typed language: primitives and objects Eclipse checks for syntax and type errors continuously It gives red underline to errors and small red box to let you know which line in document it is located If you move your mouse over the error, then it suggests possible solutions to the error If you think one of the suggestions is a solution, then simply click on it to apply it Of course, it wont compile and run until you fix all the syntax errors However, you dont have any idea about runtime errors except that you will have to run it and find out
Conclusion
Java Swing is easier to learn than others because its Java You can use any helpful tools out there that are for Java development like eclipse IDE, NetBeans IDE Lacks live graphical and interactive help while developing Has unlimited possibilities depending on how you implement your software