310311312313314315316317318319320
window = new DefaultWindow(Console.MESSAGES.createTitle("Socket Binding")); window.setWidth(480); window.setHeight(360); window.trapWidget( new NewSocketWizard(this, bindingGroups).asWidget() ); window.setGlassEnabled(true); window.center(); }
231232233234235236237238239240241
window = new DefaultWindow(Console.MESSAGES.createTitle("Socket Binding")); window.setWidth(480); window.setHeight(360); window.setWidget( new NewSocketWizard(this, bindingGroups).asWidget() ); window.setGlassEnabled(true); window.center(); }
314315316317318319320321322323324