Get Installed Look And Feels : Look Feel « Swing JFC « Java






Get Installed Look And Feels

Get Installed Look And Feels
 
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);
  }
}

           
         
  








Related examples in the same category

1.Getting and Setting a Native Look and Feel
2.Retrieve the cross-platform look and feel
3.Default look and feel can be set in a file called 'swing.properties' located in the '/lib' directory.
4.Getting and Setting a Look and Feel
5.Set the look and feel using a system property on the command line
6.Look and feel string
7.Selecting different looks and feels
8.Change the look and feelChange the look and feel
9.A Look-and-feel switcherA Look-and-feel switcher
10.Simple look and feel Example
11.Change Look and feelChange Look and feel
12.Get Swing Properties
13.awt.font.desktophints
14.Highlighted ButtonHighlighted Button