( String [] args )
| 392 | } |
| 393 | |
| 394 | public static void main( String [] args ) |
| 395 | throws Exception |
| 396 | { |
| 397 | ClassBrowser cb = new ClassBrowser(); |
| 398 | cb.init(); |
| 399 | |
| 400 | JFrame f=new JFrame("BeanShell Class Browser v1.0"); |
| 401 | f.getContentPane().add( "Center", cb ); |
| 402 | cb.setFrame( f ); |
| 403 | f.pack(); |
| 404 | f.setVisible(true); |
| 405 | } |
| 406 | |
| 407 | public void setFrame( JFrame frame ) { |
| 408 | this.frame = frame; |