blob: 5fe3e2593f52182ccc974cb3ce8d4b6e39a8d9da (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package cppcheckplus.control;
import javax.swing.SwingUtilities;
import javax.xml.parsers.ParserConfigurationException;
public class Main {
public static void main(String[] args) throws ParserConfigurationException {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
MyContorlUtil.setupLookAndFeel();
UIFrame ui = new UIFrame();
ui.setVisible(true);
}
});
}
}
|