Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

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.

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();
...
}
});

0 votes



2 answers

Permanent link
You can find it in com.ibm.team.process.ide.ui plug-in.

0 votes


Permanent link
You can find it in com.ibm.team.process.ide.ui plug-in.


Thank you!

Yes, it looks like it is the ContributorListPart which is used by the ProjectAreaPage.

0 votes

Your answer

Register or log in to post your answer.

Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details
× 10,941

Question asked: Apr 05 '10, 5:35 p.m.

Question was seen: 6,453 times

Last updated: Apr 05 '10, 5:35 p.m.

Confirmation Cancel Confirm