Managing look-and-feel data
by , 04-26-2012 at 07:42 PM (299 Views)
A static class known as UIManager.LookAndFeelInfo is defined by UIManager to store high leveled names, like Metal, and specified classname like "com.sun.java.swing.plaf.MetalLookAndFeel", for LookAndFeel.Internally these classes are used for management of the LookAndFeel objects which are known. UIManager could access this information through these given static methods:
Programmatically, these methods find out that which implementations of the look and feel are present, that is considered to be useful while user interface is built that permits end users to choose look and feel dynamically.Java Code:public static LookAndFeelInfo[] getInstalledLookAndFeels() public static void setInstalledLookAndFeels(LookAndFeelInfo[] infos) throws SecurityException public static void installLookAndFeel(LookAndFeelInfo info) public static void installLookAndFeel(String name, String className)









Email Blog Entry
sorry for all the questions
thanks...
06-14-2013, 02:22 PM in gbonecapone