Package com.valhalla.gui

Examples of com.valhalla.gui.WaitDialog


     */
    private void addBuddy(String groupName, String buddyAlias, String buddyId) {
        Roster buddyGroups = ConnectorThread.getInstance()
                .getRoster();

        WaitDialog wait = new WaitDialog(this, null, resources.getString("pleaseWait"));
        wait.setVisible(true);
        setVisible(false);

        Thread thread = new Thread(new AddBuddyThread(wait, groupName,
                buddyAlias, buddyId, this));
        thread.start();
View Full Code Here


  /**
   * Collects the required registration fields from the server
   */
  public void getRegistrationInfo() {
    GetRegistrationThread thread = new GetRegistrationThread();
    wait = new WaitDialog(this, thread, "Gathering registration form...");
    wait.setVisible(true);

    thread.start();
  }
View Full Code Here

   * Sends the registration information to the server
   */
  public void register() {
    RegistrationThread thread = new RegistrationThread();

    wait = new WaitDialog(this, thread, "Submitting registration...");
    wait.setVisible(true);

    thread.start();
  }
View Full Code Here

    public void register() {
        setVisible(false);

        RegisterThread thread = new RegisterThread();

        wait = new WaitDialog(this, thread, resources.getString("pleaseWait"));
        wait.setVisible(true);

        thread.start();
    }
View Full Code Here

     * Contacts the server to find out which fields are needed
     */
    public void getRegistrationInfo() {

        GetRegistrationFormThread thread = new GetRegistrationFormThread();
        wait = new WaitDialog(this, thread, resources.getString("pleaseWait"));
        wait.setVisible(true);

        thread.start();
    }
View Full Code Here

TOP

Related Classes of com.valhalla.gui.WaitDialog

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.