3 import java.io.IOException;
4 import javax.swing.SwingUtilities;
5 import javax.swing.UIManager;
7 import saccubus.prompt.Prompt;
15 * 説明: ニコニコ動画の動画をコメントつきで保存
19 * 著作権: Copyright (c) 2007 PSI
29 public class Saccubus {
30 boolean packFrame = false;
37 MainFrame frame = new MainFrame();
38 // validate() はサイズを調整する
39 // pack() は有効なサイズ情報をレイアウトなどから取得する
47 frame.setLocationByPlatform(true);
51 frame.setVisible(true);
60 public static void main(String[] args) throws IOException {
62 if (args.length > 0) {
67 SwingUtilities.invokeLater(new Runnable() {
70 UIManager.setLookAndFeel(UIManager
71 .getSystemLookAndFeelClassName());
72 } catch (Exception exception) {
73 exception.printStackTrace();