Uses of Class
ch.hortis.sonar.model.Rule

Packages that use Rule
ch.hortis.sonar.model   
ch.hortis.sonar.service   
org.sonar.commons.measures   
org.sonar.commons.rules   
org.sonar.core.rules   
org.sonar.plugins.api.maven   
org.sonar.plugins.api.rules   
org.sonar.plugins.checkstyle   
org.sonar.plugins.findbugs   
org.sonar.plugins.pmd   
 

Uses of Rule in ch.hortis.sonar.model
 

Methods in ch.hortis.sonar.model that return Rule
 Rule RuleFailure.getRule()
           
 Rule ActiveRule.getRule()
           
 

Methods in ch.hortis.sonar.model with parameters of type Rule
 void RuleFailure.setRule(Rule rule)
           
 void ActiveRule.setRule(Rule rule)
           
 

Constructors in ch.hortis.sonar.model with parameters of type Rule
ActiveRule(RulesProfile profile, Rule rule, RuleFailureLevel level)
           
RuleFailure(Rule rule, RuleFailureLevel level)
           
RuleFailure(Rule rule, RuleFailureLevel level, Snapshot snapshot)
           
 

Uses of Rule in ch.hortis.sonar.service
 

Fields in ch.hortis.sonar.service declared as Rule
protected  Rule MeasureKey.rule
           
 

Methods in ch.hortis.sonar.service that return Rule
 Rule MeasureKey.getRule()
           
 

Methods in ch.hortis.sonar.service with parameters of type Rule
 MeasureKey MeasureKey.setRule(Rule rule)
           
 

Constructors in ch.hortis.sonar.service with parameters of type Rule
MeasureKey(Metric metric, java.lang.Integer rulesCategoryId, Rule rule)
           
MeasureKey(Metric metric, Rule rule)
           
 

Uses of Rule in org.sonar.commons.measures
 

Methods in org.sonar.commons.measures that return Rule
 Rule Measure.getRule()
           
 

Methods in org.sonar.commons.measures with parameters of type Rule
 void Measure.setRule(Rule rule)
           
 

Uses of Rule in org.sonar.commons.rules
 

Methods in org.sonar.commons.rules that return Rule
 Rule RuleParam.getRule()
           
 Rule RulesDao.getRule(java.lang.String pluginKey, java.lang.String ruleKey)
           
 Rule RulesDao.getRuleByKey(java.lang.String pluginKey, java.lang.String ruleKey)
           
 

Methods in org.sonar.commons.rules that return types with arguments of type Rule
 java.util.List<Rule> RulesDao.getRules()
           
 java.util.List<Rule> RulesDao.getRulesByCategory(RulesCategory categ)
           
 java.util.List<Rule> RulesDao.getRulesByPlugin(java.lang.String pluginKey)
           
 

Methods in org.sonar.commons.rules with parameters of type Rule
 void RuleParam.setRule(Rule rule)
           
 

Constructors in org.sonar.commons.rules with parameters of type Rule
RuleParam(Rule rule, java.lang.String key, java.lang.String description, java.lang.String type)
           
 

Uses of Rule in org.sonar.core.rules
 

Methods in org.sonar.core.rules with parameters of type Rule
protected  void RulesRepositorySynchronizer.addNewRule(java.lang.String pluginKey, Rule rule)
           
protected  RulesCategory RulesRepositorySynchronizer.getValidCategory(Rule rule, java.lang.String plugin)
           
protected  void RulesRepositorySynchronizer.updateExistingRule(java.lang.String pluginKey, Rule rule, Rule existingRule)
           
protected  void RulesRepositorySynchronizer.updateRuleFields(java.lang.String pluginKey, Rule newRule, Rule existingRule)
           
protected  void RulesRepositorySynchronizer.updateRuleParameters(Rule newRule, Rule existingRule)
           
 

Method parameters in org.sonar.core.rules with type arguments of type Rule
 void RulesRepositorySynchronizer.registerRules(java.lang.String pluginKey, java.util.List<Rule> rules)
           
 

Uses of Rule in org.sonar.plugins.api.maven
 

Methods in org.sonar.plugins.api.maven with parameters of type Rule
 RuleFailure JavaMeasuresRecorder.createClassRuleFailure(Rule rule, java.lang.String packageName, java.lang.String className, boolean unitTest, java.lang.String message, RuleFailureLevel level, RuleFailureParam... params)
           
 RuleFailure PlsqlMeasuresRecorder.createRuleFailure(Rule rule, java.lang.String dirname, java.lang.String filename, java.lang.String message, RuleFailureLevel level, RuleFailureParam... params)
           
 

Uses of Rule in org.sonar.plugins.api.rules
 

Methods in org.sonar.plugins.api.rules that return Rule
 Rule RulesManagerImpl.getPluginRule(java.lang.String pluginKey, java.lang.String ruleKey)
           
 Rule RulesManager.getPluginRule(java.lang.String pluginKey, java.lang.String ruleKey)
           
 

Methods in org.sonar.plugins.api.rules that return types with arguments of type Rule
 java.util.List<Rule> RulesRepository.getInitialReferential()
           
 java.util.Collection<Rule> RulesManagerImpl.getPluginRules(java.lang.String pluginKey)
           
 java.util.Collection<Rule> RulesManager.getPluginRules(java.lang.String pluginKey)
           
 java.util.Map<java.lang.String,Rule> RulesManagerImpl.getPluginRulesIndexedByKey(java.lang.String pluginKey)
           
 java.util.List<Rule> StandardRulesXmlParser.parse(java.io.InputStream input)
           
 java.util.List<Rule> StandardRulesXmlParser.parse(java.io.Reader reader)
           
 java.util.List<Rule> StandardRulesXmlParser.parse(java.lang.String xml)
          see the XML format into the unit test src/test/java/.../StandardRulesXmlParserTest
 java.util.List<Rule> RulesRepository.parseReferential(java.lang.String fileContent)
           
 

Method parameters in org.sonar.plugins.api.rules with type arguments of type Rule
 java.util.List<ActiveRule> ConfigurationImportable.importConfiguration(java.lang.String configuration, java.util.List<Rule> rules)
           
 

Constructor parameters in org.sonar.plugins.api.rules with type arguments of type Rule
StandardProfileXmlParser(java.util.List<Rule> rules)
           
 

Uses of Rule in org.sonar.plugins.checkstyle
 

Methods in org.sonar.plugins.checkstyle that return types with arguments of type Rule
 java.util.List<Rule> CheckstyleRulesRepository.getInitialReferential()
           
 java.util.List<Rule> CheckstyleRulesRepository.parseReferential(java.lang.String fileContent)
           
 

Method parameters in org.sonar.plugins.checkstyle with type arguments of type Rule
protected  void CheckstyleRulesRepository.buildActiveRulesFromModuleTree(Module moduleTree, java.lang.String modulePath, java.util.List<ActiveRule> activeRules, java.util.List<Rule> rules)
           
 java.util.List<ActiveRule> CheckstyleRulesRepository.importConfiguration(java.lang.String configuration, java.util.List<Rule> rules)
           
 

Uses of Rule in org.sonar.plugins.findbugs
 

Methods in org.sonar.plugins.findbugs that return types with arguments of type Rule
 java.util.List<Rule> FindbugsRulesRepository.getInitialReferential()
           
 java.util.List<Rule> FindbugsRulesRepository.parseReferential(java.lang.String fileContent)
           
 

Uses of Rule in org.sonar.plugins.pmd
 

Methods in org.sonar.plugins.pmd that return types with arguments of type Rule
 java.util.List<Rule> PmdRulesRepository.getInitialReferential()
           
 java.util.List<Rule> PmdRulesRepository.parseReferential(java.lang.String fileContent)
           
 

Method parameters in org.sonar.plugins.pmd with type arguments of type Rule
protected  void PmdRulesRepository.buildActiveRulesFromModuleTree(Ruleset ruleset, java.util.List<ActiveRule> activeRules, java.util.List<Rule> rules)
           
 java.util.List<ActiveRule> PmdRulesRepository.importConfiguration(java.lang.String configuration, java.util.List<Rule> rules)
           
 



Copyright © 2008 SonarSource SA. All Rights Reserved.