public static void main(String[] args) {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
}
catch(Exception e) {
e.printStackTrace();
}
LogTextPanelExample foo = new LogTextPanelExample();
new LogTextPanelExampleGenThread(foo.catName);
}
|