Package org.apache.geronimo.st.ui.commands

Examples of org.apache.geronimo.st.ui.commands.SetHTTPPortCommand


    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);
View Full Code Here

TOP

Related Classes of org.apache.geronimo.st.ui.commands.SetHTTPPortCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.