Package jetbrains.communicator.idea.findUsers

Examples of jetbrains.communicator.idea.findUsers.FindUsersDialog


  }

  @Override
  public FindUsersCommand.UsersInfo chooseUsersToBeAdded(List<User> foundNewUsers, String[] groups) {

    FindUsersDialog dialog = new FindUsersDialog(foundNewUsers, groups);

    dialog.show();

    if (dialog.isOK()) {
      Set<User> selectedUsers = dialog.getSelectedUsers();
      return new FindUsersCommand.UsersInfo(selectedUsers.toArray(new User[selectedUsers.size()]), dialog.getGroup());
    }

    return new FindUsersCommand.UsersInfo();
  }
View Full Code Here

TOP

Related Classes of jetbrains.communicator.idea.findUsers.FindUsersDialog

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.