1
0
mirror of https://github.com/2martens/uni.git synced 2026-05-06 11:26:25 +02:00

ID-5: Aufgabe 2 bearbeitet

This commit is contained in:
Jim Martens
2014-05-09 14:39:09 +02:00
parent 64a4762a1f
commit 4d8ed895e2
10 changed files with 542 additions and 0 deletions

View File

@ -0,0 +1,27 @@
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
public class Main {
public static void main(String[] argv) {
SwingUtilities.invokeLater(new Runnable()
{
@Override
public void run()
{
try
{
UIManager.setLookAndFeel(UIManager
.getSystemLookAndFeelClassName());
}
catch (ClassNotFoundException | InstantiationException
| IllegalAccessException
| UnsupportedLookAndFeelException e)
{
e.printStackTrace();
}
new Controller();
}
});
}
}