128129130131132133134135136137138
window = new DefaultWindow(Console.MESSAGES.createTitle("Path")); window.setWidth(480); window.setHeight(360); window.trapWidget( new NewPathWizard(this).asWidget() ); window.setGlassEnabled(true); window.center(); }
132133134135136137138139140141142