httpPort = toolkit.createText(composite, getHTTPPort(), SWT.BORDER);
httpPort.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
httpPort.addModifyListener(new ModifyListener() {
public void modifyText(ModifyEvent e) {
execute(new SetHTTPPortCommand(server, httpPort.getText()));
}
});
// ------- Label and text field for the rmi port -------
createLabel(composite, Messages.rmiPort, toolkit);