TeamContributorSelectionDialog
Hello,
I want to use the TeamContributorSelectionDialog in my own plugin to allow users to pick team members.
I would like to duplicate the Members section of the Project Area view but I can't seem to find the correct rcp.ui plugin that does that.
Can someone point me in the right direction?
Right now, I have a button that opens the dialog...
When I close it, I want to display the selected contributor usernames in a list.
I want to use the TeamContributorSelectionDialog in my own plugin to allow users to pick team members.
I would like to duplicate the Members section of the Project Area view but I can't seem to find the correct rcp.ui plugin that does that.
Can someone point me in the right direction?
Right now, I have a button that opens the dialog...
When I close it, I want to display the selected contributor usernames in a list.
button.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
TeamContributorSelectionDialog dialog = new TeamContributorSelectionDialog(getShell(), repository);
if (dialog.open() == Window.OK) {
IContributorHandle[] contributorResult = dialog.getContributorResult();
...
}
});