起動を担当するクラス
アプリケーションエントリポイントが定義されています。
// vim: set ts=2 sw=2 et ft=java: // // RegexpTesterApp.java // // package gsf.tools.regexp.regexptester; import javax.swing.JFrame; import javax.swing.UIManager; public final class RegexpTesterApp { public static void main(String[] args) throws Exception{ //UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); UIManager.setLookAndFeel(new net.sourceforge.mlf.metouia.MetouiaLookAndFeel()); JFrame win = new RegexpTester(); win.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); win.setSize(600, 150); win.setVisible(true); } }
================================
過去の記事については、以下のページからご参照下さい。
- いろいろ備忘録日記まとめ