Results 1 to 1 of 1
Thread: Getting Installed Look And Feels
-
Getting Installed Look And Feels
Java Code:import javax.swing.UIManager; public class ListPlafs { public static void main(String args[]) { UIManager.LookAndFeelInfo plaf[] = UIManager.getInstalledLookAndFeels(); for (int i = 0, n = plaf.length; i < n; i++) { System.out.println("Name: " + plaf[i].getName()); System.out.println(" Class name: " + plaf[i].getClassName()); } System.exit(0); } }"The sole cause of man’s unhappiness is that he does not know how to stay quietly in his room." - Blaise Pascal
Similar Threads
-
java code for checking if a software is installed or not
By heggemony in forum Advanced JavaReplies: 1Last Post: 07-31-2007, 01:19 PM -
cannot find a JVM installed
By tommy in forum New To JavaReplies: 2Last Post: 07-29-2007, 08:23 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks