MCPcopy Create free account
hub / github.com/beanshell/beanshell / main

Method main

src/bsh/util/ClassBrowser.java:394–405  ·  view source on GitHub ↗
( String [] args )

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls 3

initMethod · 0.95
setFrameMethod · 0.95
addMethod · 0.45

Tested by

no test coverage detected