BooleanFieldEditor filterResolutionField = new BooleanFieldEditor(filterResolutionKey,
ReviewI18n.getString(filterLabelResolutionKey), filterResolutionComposite);
this.filterResolutionCombo = new Combo(parent, SWT.READ_ONLY);
GridData filterResolutionData = new GridData(GridData.FILL_HORIZONTAL);
this.filterResolutionCombo.setLayoutData(filterResolutionData);
ReviewModel reviewModel = ReviewModel.getInstance();
IProject project = reviewModel.getProjectManager().getProject();
ReviewId reviewId = reviewModel.getReviewIdManager().getReviewId();
ResolutionKeyManager manager = ResolutionKeyManager.getInstance(project, reviewId);
this.filterResolutionCombo.setItems(manager.getElements());
String resolutionKey = this.store.getString(FILTER_RESOLUTION_COMBO_KEY);
this.filterResolutionCombo.setText(ReviewI18n.getString(resolutionKey));
filterResolutionField.setPropertyChangeListener(new IPropertyChangeListener() {