Uses of Class
org.sonar.api.profiles.RulesProfile

Packages that use RulesProfile
org.sonar.api.batch   
org.sonar.api.checks   
org.sonar.api.database.model   
org.sonar.api.profiles   
org.sonar.api.rules   
org.sonar.batch   
org.sonar.batch.index   
org.sonar.jpa.dao   
org.sonar.plugins.checkstyle   
org.sonar.plugins.core.sensors   
org.sonar.plugins.findbugs   
org.sonar.plugins.pmd   
org.sonar.plugins.squid   
org.sonar.server.configuration   
 

Uses of RulesProfile in org.sonar.api.batch
 

Constructors in org.sonar.api.batch with parameters of type RulesProfile
AbstractViolationsStaxParser(SensorContext context, RulesManager rulesManager, RulesProfile profile)
          Deprecated. since 1.11.
 

Uses of RulesProfile in org.sonar.api.checks
 

Methods in org.sonar.api.checks with parameters of type RulesProfile
static AnnotationCheckFactory AnnotationCheckFactory.create(RulesProfile profile, String repositoryKey, Collection<Class> checkClasses)
           
 

Constructors in org.sonar.api.checks with parameters of type RulesProfile
CheckFactory(RulesProfile profile, String repositoryKey)
           
 

Uses of RulesProfile in org.sonar.api.database.model
 

Methods in org.sonar.api.database.model that return RulesProfile
 RulesProfile ResourceModel.getRulesProfile()
           
 

Methods in org.sonar.api.database.model with parameters of type RulesProfile
 void ResourceModel.setRulesProfile(RulesProfile rulesProfile)
           
 

Uses of RulesProfile in org.sonar.api.profiles
 

Methods in org.sonar.api.profiles that return RulesProfile
 RulesProfile RulesProfile.addActiveRule(ActiveRule activeRule)
           
static RulesProfile RulesProfile.create()
           
static RulesProfile RulesProfile.create(String name, String language)
           
abstract  RulesProfile ProfileDefinition.createProfile(ValidationMessages validation)
           
 RulesProfile Alert.getRulesProfile()
           
abstract  RulesProfile ProfileImporter.importProfile(Reader reader, ValidationMessages messages)
           
 RulesProfile XMLProfileParser.parse(Reader reader, ValidationMessages messages)
           
 RulesProfile AnnotationProfileParser.parse(String repositoryKey, String profileName, String language, Collection<Class> annotatedClasses, ValidationMessages messages)
           
 RulesProfile XMLProfileParser.parseResource(ClassLoader classloader, String xmlClassPath, ValidationMessages messages)
           
 RulesProfile RulesProfile.removeActiveRule(ActiveRule activeRule)
           
 RulesProfile RulesProfile.setEnabled(Boolean b)
           
 RulesProfile RulesProfile.setLanguage(String s)
          Set the profile language
 RulesProfile RulesProfile.setName(String s)
          Set the profile name.
 RulesProfile RulesProfile.setUsed(Boolean used)
           
 RulesProfile RulesProfile.setVersion(int version)
           
 

Methods in org.sonar.api.profiles with parameters of type RulesProfile
abstract  void ProfileExporter.exportProfile(RulesProfile profile, Writer writer)
           
 void Alert.setRulesProfile(RulesProfile rulesProfile)
          Sets the alert profile
 void XMLProfileSerializer.write(RulesProfile profile, Writer writer)
           
 

Constructors in org.sonar.api.profiles with parameters of type RulesProfile
Alert(RulesProfile rulesProfile, Metric metric, String operator, String valueError, String valueWarning)
          Creates an alert
 

Uses of RulesProfile in org.sonar.api.rules
 

Methods in org.sonar.api.rules that return RulesProfile
 RulesProfile ActiveRuleChange.getRulesProfile()
           
 RulesProfile ActiveRule.getRulesProfile()
           
 

Methods in org.sonar.api.rules with parameters of type RulesProfile
 void ActiveRule.setRulesProfile(RulesProfile rulesProfile)
          Deprecated. visibility should be reduced to protected or package
 

Constructors in org.sonar.api.rules with parameters of type RulesProfile
ActiveRule(RulesProfile profile, Rule rule, RulePriority severity)
          Deprecated. visibility should be reduced to protected or package
ActiveRuleChange(String userName, RulesProfile profile, Rule rule)
           
 

Uses of RulesProfile in org.sonar.batch
 

Methods in org.sonar.batch that return RulesProfile
 RulesProfile ProfileLoader.load(Project project)
          Loads quality profile for specified project.
 RulesProfile DefaultProfileLoader.load(Project project)
           
 RulesProfile ProfileProvider.provide(Project project, ProfileLoader profileLoader)
           
 

Uses of RulesProfile in org.sonar.batch.index
 

Methods in org.sonar.batch.index with parameters of type RulesProfile
 void DefaultIndex.setCurrentProject(Project project, ResourceFilters resourceFilters, ViolationFilters violationFilters, RulesProfile profile)
           
 

Uses of RulesProfile in org.sonar.jpa.dao
 

Methods in org.sonar.jpa.dao that return RulesProfile
 RulesProfile ProfilesDao.getActiveProfile(String languageKey, String projectResourceKey)
           
 RulesProfile ProfilesDao.getProfile(String languageKey, String profileName)
           
 

Uses of RulesProfile in org.sonar.plugins.checkstyle
 

Methods in org.sonar.plugins.checkstyle that return RulesProfile
 RulesProfile SonarWayWithFindbugsProfile.createProfile(ValidationMessages validationMessages)
           
 RulesProfile SunConventionsProfile.createProfile(ValidationMessages messages)
           
 RulesProfile SonarWayProfile.createProfile(ValidationMessages messages)
           
 RulesProfile CheckstyleProfileImporter.importProfile(Reader reader, ValidationMessages messages)
           
 

Methods in org.sonar.plugins.checkstyle with parameters of type RulesProfile
 void CheckstyleProfileExporter.exportProfile(RulesProfile profile, Writer writer)
           
 

Constructors in org.sonar.plugins.checkstyle with parameters of type RulesProfile
CheckstyleConfiguration(Settings conf, CheckstyleProfileExporter confExporter, RulesProfile profile, ProjectFileSystem fileSystem)
           
CheckstyleSensor(RulesProfile profile, CheckstyleExecutor executor)
           
 

Uses of RulesProfile in org.sonar.plugins.core.sensors
 

Constructors in org.sonar.plugins.core.sensors with parameters of type RulesProfile
CheckAlertThresholds(RulesProfile profile)
           
GenerateAlertEvents(RulesProfile profile, TimeMachine timeMachine)
           
ProfileEventsSensor(RulesProfile profile, TimeMachine timeMachine)
           
ProfileSensor(RulesProfile profile, DatabaseSession session)
           
 

Uses of RulesProfile in org.sonar.plugins.findbugs
 

Methods in org.sonar.plugins.findbugs that return RulesProfile
 RulesProfile SonarWayWithFindbugsProfile.createProfile(ValidationMessages messages)
           
 RulesProfile FindbugsProfileImporter.importProfile(Reader findbugsConf, ValidationMessages messages)
           
 

Methods in org.sonar.plugins.findbugs with parameters of type RulesProfile
 void FindbugsProfileExporter.exportProfile(RulesProfile profile, Writer writer)
           
 

Constructors in org.sonar.plugins.findbugs with parameters of type RulesProfile
FindbugsConfiguration(Project project, RulesProfile profile, FindbugsProfileExporter exporter, ProjectClasspath classpath)
           
FindbugsSensor(RulesProfile profile, RuleFinder ruleFinder, FindbugsExecutor executor)
           
 

Uses of RulesProfile in org.sonar.plugins.pmd
 

Methods in org.sonar.plugins.pmd that return RulesProfile
 RulesProfile SonarWayWithFindbugsProfile.createProfile(ValidationMessages validationMessages)
           
 RulesProfile SunConventionsProfile.createProfile(ValidationMessages messages)
           
 RulesProfile SonarWayProfile.createProfile(ValidationMessages messages)
           
protected  RulesProfile PmdProfileImporter.createRuleProfile(PmdRuleset pmdRuleset, ValidationMessages messages)
           
 RulesProfile PmdProfileImporter.importProfile(Reader pmdConfigurationFile, ValidationMessages messages)
           
 

Methods in org.sonar.plugins.pmd with parameters of type RulesProfile
 void PmdProfileExporter.exportProfile(RulesProfile profile, Writer writer)
           
 

Constructors in org.sonar.plugins.pmd with parameters of type RulesProfile
PmdConfiguration(PmdProfileExporter pmdRulesRepository, RulesProfile rulesProfile, Project project)
           
PmdSensor(RulesProfile profile, RuleFinder rulesFinder, PmdExecutor executor)
           
 

Uses of RulesProfile in org.sonar.plugins.squid
 

Constructors in org.sonar.plugins.squid with parameters of type RulesProfile
SquidSensor(RulesProfile profile, NoSonarFilter noSonarFilter, ProjectClasspath projectClasspath, ResourceCreationLock lock)
           
 

Uses of RulesProfile in org.sonar.server.configuration
 

Methods in org.sonar.server.configuration that return types with arguments of type RulesProfile
 Collection<RulesProfile> SonarConfig.getProfiles()
           
 

Methods in org.sonar.server.configuration with parameters of type RulesProfile
 void ProfilesBackup.importProfile(RulesDao rulesDao, RulesProfile toImport)
           
 

Method parameters in org.sonar.server.configuration with type arguments of type RulesProfile
 void SonarConfig.setProfiles(Collection<RulesProfile> profiles)
           
 



Copyright © 2009-2011 SonarSource. All Rights Reserved.