import Controller.*;
import javax.swing.plaf.*;
import javax.swing.UIManager;

public class RunStructure{

    public static void main(String[] args) {
	try {
	    // Set System L&F
	  UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
	  UIManager.getDefaults().put("InternalFrame.icon","");    
	} 
	catch (Exception e) {
	    // handle exception
	}
	

	StructureApp app = new StructureApp();
	app.initStructure();
    }
}
