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

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


    createLabel(composite, Messages.username, toolkit);
    username = toolkit.createText(composite, getUserName(), SWT.BORDER);
    username.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
    username.addModifyListener(new ModifyListener() {
      public void modifyText(ModifyEvent e) {
        execute(new SetUsernameCommand(server, username.getText()));
      }
    });

    // ------- Label and text field for the password -------
    createLabel(composite, Messages.password, toolkit);
View Full Code Here

TOP

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

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.