28 lines
477 B
Java
28 lines
477 B
Java
|
import javax.swing.SwingUtilities;
|
||
|
import javax.swing.UIManager;
|
||
|
|
||
|
import net.sourceforge.filebot.ui.FileBotWindow;
|
||
|
|
||
|
|
||
|
public class Main {
|
||
|
|
||
|
/**
|
||
|
* @param args
|
||
|
*/
|
||
|
public static void main(String[] args) {
|
||
|
try {
|
||
|
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
|
||
|
} catch (Exception e) {
|
||
|
e.printStackTrace();
|
||
|
}
|
||
|
|
||
|
SwingUtilities.invokeLater(new Runnable() {
|
||
|
|
||
|
public void run() {
|
||
|
new FileBotWindow().setVisible(true);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
}
|