~ubuntu-branches/ubuntu/vivid/gmetrics/vivid

« back to all changes in this revision

Viewing changes to src/main/groovy/org/gmetrics/result/ClassMetricResult.groovy

  • Committer: Package Import Robot
  • Author(s): Miguel Landaeta, Miguel Landaeta, tony mancill
  • Date: 2012-01-18 20:57:50 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120118205750-68fv86p7fs8xz470
Tags: 0.5-1
[Miguel Landaeta]
* New upstream release.
* Remove patch ftbfs_613266.diff since it was merged upstream.
* Update dates in copyright file.

[tony mancill]
* Set DMUA flag.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 * Represents the results for a single metric for a single class
20
20
 *
21
21
 * @author Chris Mair
22
 
 * @version $Revision: 107 $ - $Date: 2010-06-05 07:23:27 -0400 (Sat, 05 Jun 2010) $
 
22
 * @version $Revision: 180 $ - $Date: 2011-11-27 21:56:48 -0500 (Sun, 27 Nov 2011) $
23
23
 */
24
24
class ClassMetricResult {
25
25
    MetricResult classMetricResult
26
 
    Map methodMetricResults = [:]
 
26
    Map<MethodKey,MetricResult> methodMetricResults = [:]
27
27
 
28
 
    ClassMetricResult(MetricResult metricResult, Map methodMetricResults=null) {
 
28
    ClassMetricResult(MetricResult metricResult, Map<MethodKey,MetricResult> methodMetricResults=null) {
29
29
        this.classMetricResult = metricResult
30
30
        this.methodMetricResults = methodMetricResults
31
31
    }