private void createProjectSelectionContent(Composite parent) {
Label authorLabel = new Label(parent, SWT.NONE);
authorLabel.setText(ReviewI18n.getString("ReviewIdNewAuthorPage.label.author"));
this.authorCombo = new Combo(parent, SWT.READ_ONLY);
authorCombo.setData(authorCombo);
PropertyResource propertyResource = PropertyResource.getInstance(this.project, true);
String defaultReviewId = PropertyConstraints.DEFAULT_REVIEW_ID;
ReviewId reviewId = propertyResource.getReviewId(defaultReviewId);
Map<String, ReviewerId> reviewers = reviewId.getReviewers();
String author = reviewId.getAuthor();
authorCombo.setItems(reviewers.keySet().toArray(new String[] {}));
authorCombo.setText(author);
authorCombo.addListener(SWT.Selection, new Listener() {