Package main

Source Code of main.Sillian

package main;


import javax.swing.JDialog;
import javax.swing.JFrame;

import ui.MainFrame;


public class Sillian
{
  public static void main(String[] args)
  {
    JFrame.setDefaultLookAndFeelDecorated(true);
    JDialog.setDefaultLookAndFeelDecorated(true);

    new MainFrame();
  }

}
TOP

Related Classes of main.Sillian

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.