* Fills the file table with files.
* @param projectName the project name.
*/
public void fillFileTable(String projectName) {
IProject project = FileResource.getProject(projectName);
PropertyResource propertyResource = PropertyResource.getInstance(project, true);
String defaultReviewId = PropertyConstraints.DEFAULT_REVIEW_ID;
ReviewResource reviewResource = propertyResource.getReviewResource(defaultReviewId, true);
if (reviewResource != null) {
this.files = reviewResource.getFileSet();
for (Iterator<String> i = this.files.iterator(); i.hasNext();) {
String file = (String) i.next();
TableItem item = new TableItem(this.fileListTable, SWT.NONE);