![]() |
The Java Developers Almanac 1.4Order this book from Amazon. |
e866. Determining the Available Look and FeelsUIManager.LookAndFeelInfo[] info = UIManager.getInstalledLookAndFeels(); for (int i=0; i<info.length; i++) { // Get the name of the look and feel that is suitable for display to the user String humanReadableName = info[i].getName(); String className = info[i].getClassName(); // The className is used with UIManager.setLookAndFeel() // See e867 Getting and Setting a Look and Feel }
e868. Getting and Setting a Native Look and Feel e869. Setting the Default Look and Feel Using a System Property or Property File © 2002 Addison-Wesley. |