Examples of FindUsersDialog


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
Copyright © 2018 www.massapi.com. 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.