public ProjectSettingsConfigurable(Project project) {
this.myProject = project;
this.myProjectSettings = ProjectSettings.getInstance(project);
this.mySonarServersView = new ProjectSonarServersView(mySonarServersComboBox, myAddSonarServerButton, myEditSonarServerButton, myRemoveSonarServerButton, project);
this.myLocalAnalysisScriptView = new ProjectLocalAnalysisScriptView(myLocalAnalysisScriptComboBox, myAddLocalAnalysisScriptButton, myEditLocalAnalysisScriptButton, myRemoveLocalAnalysisScriptButton, project);
this.mySonarResourcesTableView = new SonarResourcesTableView(project, mySonarServersView);
}