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

Packages that use Metric
ch.hortis.sonar.service   
org.sonar.commons.measures   
org.sonar.core   
org.sonar.core.batch.graph   
org.sonar.core.configuration   
org.sonar.core.configuration.metrics   
org.sonar.core.jobs   
org.sonar.plugins.api.jobs   
org.sonar.plugins.api.metrics   
org.sonar.plugins.core.complexity   
org.sonar.plugins.core.metrics   
org.sonar.plugins.core.rules   
org.sonar.plugins.core.unittests   
org.sonar.plugins.javancss   
org.sonar.plugins.pmd.cpd   
 

Uses of Metric in ch.hortis.sonar.service
 

Fields in ch.hortis.sonar.service declared as Metric
protected  Metric MeasureKey.metric
           
 

Methods in ch.hortis.sonar.service that return Metric
 Metric MeasureKey.getMetric()
           
 Metric MeasuresDao.getMetric(Metric metric)
           
 Metric MeasuresDao.getMetric(java.lang.String metricName)
           
 

Methods in ch.hortis.sonar.service that return types with arguments of type Metric
 java.util.Collection<Metric> MeasuresDao.getEnabledMetrics()
           
 java.util.Collection<Metric> MeasuresDao.getMetrics()
           
 java.util.Collection<Metric> MeasuresDao.getUserDefinedMetrics()
           
 

Methods in ch.hortis.sonar.service with parameters of type Metric
 Metric MeasuresDao.getMetric(Metric metric)
           
 void MeasuresDao.persistMetric(Metric metric)
           
 MeasureKey MeasureKey.setMetric(Metric metric)
           
 

Method parameters in ch.hortis.sonar.service with type arguments of type Metric
 void MeasuresDao.disabledMetrics(java.util.Collection<Metric> metrics)
           
 void MeasuresDao.registerMetrics(java.util.Collection<Metric> metrics)
           
 

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

Uses of Metric in org.sonar.commons.measures
 

Methods in org.sonar.commons.measures that return Metric
 Metric Measure.getMetric()
           
 

Methods in org.sonar.commons.measures with parameters of type Metric
 void Measure.setMetric(Metric metric)
           
 

Constructors in org.sonar.commons.measures with parameters of type Metric
Measure(java.lang.Integer projectId, Metric metric, java.lang.Double value, java.util.Date measureDate)
           
Measure(Snapshot snapshot, Metric metric, java.lang.Double value)
           
Measure(Snapshot snapshot, Metric metric, java.lang.String value)
           
 

Uses of Metric in org.sonar.core
 

Method parameters in org.sonar.core with type arguments of type Metric
protected  void MetricDatabaseSynchronizer.register(java.util.List<Metric> metrics)
           
 

Uses of Metric in org.sonar.core.batch.graph
 

Constructors in org.sonar.core.batch.graph with parameters of type Metric
MetricNode(Metric metric)
           
 

Uses of Metric in org.sonar.core.configuration
 

Methods in org.sonar.core.configuration that return types with arguments of type Metric
 java.util.Collection<Metric> SonarConfig.getMetrics()
           
 

Method parameters in org.sonar.core.configuration with type arguments of type Metric
 void SonarConfig.setMetrics(java.util.Collection<Metric> metrics)
           
 

Uses of Metric in org.sonar.core.configuration.metrics
 

Method parameters in org.sonar.core.configuration.metrics with type arguments of type Metric
protected  void MetricsBackup.exportXml(SonarConfig sonarConfig, java.util.Collection<Metric> metrics)
           
 

Uses of Metric in org.sonar.core.jobs
 

Methods in org.sonar.core.jobs that return types with arguments of type Metric
 java.util.List<Metric> UpdateStatusService.dependsOnMetrics()
           
 java.util.List<Metric> UpdateLastSnapshotReviews.dependsOnMetrics()
           
 java.util.List<Metric> TendencyService.dependsOnMetrics()
           
 java.util.List<Metric> UpdateStatusService.generatesMetrics()
           
 java.util.List<Metric> UpdateLastSnapshotReviews.generatesMetrics()
           
 java.util.List<Metric> TendencyService.generatesMetrics()
           
 

Uses of Metric in org.sonar.plugins.api.jobs
 

Methods in org.sonar.plugins.api.jobs that return Metric
protected abstract  Metric AbstractWeightingJob.getDividendMetric()
           
protected abstract  Metric AbstractWeightingJob.getDivisorMetric()
           
protected abstract  Metric AbstractSumChildrenJob.getMetric()
           
protected abstract  Metric AbstractWeightingJob.getTargetMetric()
           
 

Methods in org.sonar.plugins.api.jobs that return types with arguments of type Metric
 java.util.List<Metric> Job.dependsOnMetrics()
          Depends of another measures on the same scope.
 java.util.List<Metric> AbstractWeightingJob.dependsOnMetrics()
           
 java.util.List<Metric> AbstractJob.dependsOnMetrics()
           
 java.util.List<Metric> Job.generatesMetrics()
           
 java.util.List<Metric> AbstractWeightingJob.generatesMetrics()
           
 java.util.List<Metric> AbstractJob.generatesMetrics()
           
 

Methods in org.sonar.plugins.api.jobs with parameters of type Metric
 void ResourceImpl.addMeasure(Metric metric, java.lang.Double value)
           
 void Resource.addMeasure(Metric metric, java.lang.Double value)
           
 void ResourceImpl.addMeasure(Metric metric, java.lang.String value)
           
 void Resource.addMeasure(Metric metric, java.lang.String value)
           
 java.util.List<Measure> ResourceImpl.getChildrenMeasures(Metric metric)
           
 java.util.List<Measure> Resource.getChildrenMeasures(Metric metric)
           
 Measure ResourceImpl.getMeasure(Metric metric)
           
 Measure Resource.getMeasure(Metric metric)
           
 java.util.List<Measure> ResourceImpl.getMeasures(Metric metric)
           
 java.util.List<Measure> Resource.getMeasures(Metric metric)
           
 java.lang.Object ResourceImpl.getMeasureValue(Metric metric, java.lang.Object defaultValue)
           
 java.lang.Object Resource.getMeasureValue(Metric metric, java.lang.Object defaultValue)
           
 

Uses of Metric in org.sonar.plugins.api.metrics
 

Fields in org.sonar.plugins.api.metrics declared as Metric
static Metric CoreMetrics.CLASSES_COUNT
           
static Metric CoreMetrics.CLASSES_WITH_DUPLICATION
           
static Metric CoreMetrics.CODE_COVERAGE
           
static Metric CoreMetrics.COMMENT_LINES
           
static Metric CoreMetrics.COMMENT_RATIO
           
static Metric CoreMetrics.COMPLEXITY
           
static Metric CoreMetrics.COMPLEXITY_AVG_BY_CLASS
           
static Metric CoreMetrics.COMPLEXITY_AVG_BY_FILE
           
static Metric CoreMetrics.COMPLEXITY_AVG_BY_FUNCTION
           
static Metric CoreMetrics.COMPLEXITY_CLASSES_COUNT_DISTRIBUTION
           
static Metric CoreMetrics.COMPLEXITY_CLASSES_PERCENT_DISTRIBUTION
           
static Metric CoreMetrics.DIRECTORIES
           
static Metric CoreMetrics.DUPLICATED_LINES
           
static Metric CoreMetrics.DUPLICATED_LINES_RATIO
           
static Metric CoreMetrics.FILES_COUNT
           
static Metric CoreMetrics.FUNCTIONS_COUNT
           
static Metric CoreMetrics.JAVADOCS
           
static Metric CoreMetrics.NLOC
           
static Metric CoreMetrics.PACKAGES_COUNT
           
static Metric CoreMetrics.RULES_ALL_COMPLIANCE
           
static Metric CoreMetrics.RULES_MANDATORY_COMPLIANCE
           
static Metric CoreMetrics.RULES_MANDATORY_VIOLATIONS_COUNT
           
static Metric CoreMetrics.RULES_OPTIONAL_COMPLIANCE
           
static Metric CoreMetrics.RULES_OPTIONAL_VIOLATIONS_COUNT
           
static Metric CoreMetrics.RULES_VIOLATIONS_COUNT
           
static Metric CoreMetrics.TESTS_COUNT
           
static Metric CoreMetrics.TESTS_ERRORS
           
static Metric CoreMetrics.TESTS_FAILURES
           
static Metric CoreMetrics.TESTS_SKIPPED
           
static Metric CoreMetrics.TESTS_SUCCESS_PERCENTAGE
           
static Metric CoreMetrics.TESTS_TIME
           
 

Methods in org.sonar.plugins.api.metrics that return types with arguments of type Metric
 java.util.List<Metric> Metrics.getMetrics()
           
static java.util.List<Metric> CoreMetrics.getMetrics()
           
 

Uses of Metric in org.sonar.plugins.core.complexity
 

Methods in org.sonar.plugins.core.complexity that return types with arguments of type Metric
 java.util.List<Metric> SumComplexityCountDistributionJob.dependsOnMetrics()
           
 java.util.List<Metric> PackageComplexityCountDistributionJob.dependsOnMetrics()
           
 java.util.List<Metric> ComplexityPercentDistributionJob.dependsOnMetrics()
           
 java.util.List<Metric> SumComplexityCountDistributionJob.generatesMetrics()
           
 java.util.List<Metric> PackageComplexityCountDistributionJob.generatesMetrics()
           
 java.util.List<Metric> ComplexityPercentDistributionJob.generatesMetrics()
           
 

Uses of Metric in org.sonar.plugins.core.metrics
 

Methods in org.sonar.plugins.core.metrics that return types with arguments of type Metric
 java.util.List<Metric> UserManagedMetrics.getMetrics()
           
 

Uses of Metric in org.sonar.plugins.core.rules
 

Methods in org.sonar.plugins.core.rules that return Metric
protected  Metric RespectForRulesJob.getCountMetric()
           
protected  Metric RespectForOptionalRulesJob.getCountMetric()
           
protected  Metric RespectForMandatoryRulesJob.getCountMetric()
           
protected abstract  Metric AbstractRespectJob.getCountMetric()
           
protected  Metric RespectForRulesJob.getRespectMetric()
           
protected  Metric RespectForOptionalRulesJob.getRespectMetric()
           
protected  Metric RespectForMandatoryRulesJob.getRespectMetric()
           
protected abstract  Metric AbstractRespectJob.getRespectMetric()
           
 

Methods in org.sonar.plugins.core.rules that return types with arguments of type Metric
 java.util.List<Metric> AbstractRespectJob.dependsOnMetrics()
           
 java.util.List<Metric> CountViolationsJob.generatesMetrics()
           
 java.util.List<Metric> AbstractRespectJob.generatesMetrics()
           
 

Uses of Metric in org.sonar.plugins.core.unittests
 

Methods in org.sonar.plugins.core.unittests that return types with arguments of type Metric
 java.util.List<Metric> UnitTestsConsolidationJob.generatesMetrics()
           
 java.util.List<Metric> ProjectCodeCoverageJob.generatesMetrics()
           
 

Uses of Metric in org.sonar.plugins.javancss
 

Methods in org.sonar.plugins.javancss that return Metric
protected  Metric AverageFunctionComplexityJob.getDividendMetric()
           
protected  Metric AverageClassComplexityJob.getDividendMetric()
           
protected  Metric AverageFunctionComplexityJob.getDivisorMetric()
           
protected  Metric AverageClassComplexityJob.getDivisorMetric()
           
protected  Metric PackagesJob.getMetric()
           
 Metric NlocJob.getMetric()
           
protected  Metric JavadocsJob.getMetric()
           
protected  Metric FunctionsJob.getMetric()
           
protected  Metric ComplexityJob.getMetric()
           
 Metric CommentLinesJob.getMetric()
           
protected  Metric ClassesJob.getMetric()
           
protected  Metric AverageFunctionComplexityJob.getTargetMetric()
           
protected  Metric AverageClassComplexityJob.getTargetMetric()
           
 

Methods in org.sonar.plugins.javancss that return types with arguments of type Metric
 java.util.List<Metric> CommentRatioJob.dependsOnMetrics()
           
 java.util.List<Metric> CommentRatioJob.generatesMetrics()
           
 

Uses of Metric in org.sonar.plugins.pmd.cpd
 

Methods in org.sonar.plugins.pmd.cpd that return Metric
 Metric DuplicatedLinesJob.getMetric()
           
 

Methods in org.sonar.plugins.pmd.cpd that return types with arguments of type Metric
 java.util.List<Metric> DuplicatedLinesRatioJob.dependsOnMetrics()
           
 java.util.List<Metric> DuplicatedLinesRatioJob.generatesMetrics()
           
 



Copyright © 2008 SonarSource SA. All Rights Reserved.