* @param items the items to handle
* @return <code>true</code> if the request was successful and values were supplied;
* <code>false</code> if the user canceled the request and did not supply all requested values.
*/
private boolean getMultiSpecial(Shell shell, URIish uri, CredentialItem... items) {
CustomPromptDialog dialog = new CustomPromptDialog(shell, uri, UIText.EGitCredentialsProvider_information, items);
dialog.setBlockOnOpen(true);
int r = dialog.open();
if (r == Window.OK) {
return true;
}
return false;
}