Here you can find the source of setLookAndTheme(LookAndFeel laf, Object theme)
public static void setLookAndTheme(LookAndFeel laf, Object theme) throws UnsupportedLookAndFeelException
//package com.java2s; import javax.swing.LookAndFeel; import javax.swing.UIManager; import javax.swing.UnsupportedLookAndFeelException; public class Main { public static void setLookAndTheme(LookAndFeel laf, Object theme) throws UnsupportedLookAndFeelException { UIManager.setLookAndFeel(laf); }/* www .j a va 2s .c o m*/ }