Package org.intellij.sonar.configuration.partials

Examples of org.intellij.sonar.configuration.partials.SonarResourcesTableView


  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);
  }
View Full Code Here


  public ModuleSettingsConfigurable(Module module) {
    this.myModule = module;
    this.myProject = module.getProject();
    this.myLocalAnalysisScriptView = new ModuleLocalAnalysisScriptView(myLocalAnalysisScriptComboBox, myAddLocalAnalysisScriptButton, myEditLocalAnalysisScriptButton, myRemoveLocalAnalysisScriptButton, myProject);
    this.mySonarServersView = new ModuleSonarServersView(mySonarServersComboBox, myAddSonarServerButton, myEditSonarServerButton, myRemoveSonarServerButton,myProject);
    this.mySonarResourcesTableView = new SonarResourcesTableView(myProject, mySonarServersView);
  }
View Full Code Here

TOP

Related Classes of org.intellij.sonar.configuration.partials.SonarResourcesTableView

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.