Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import javax.swing.LookAndFeel;
import javax.swing.UIManager;

public class Main {
    public static void main(String[] argv) throws Exception {
        // Get the currently installed look and feel
        LookAndFeel lf = UIManager.getLookAndFeel();

        UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");

    }
}