~ubuntu-branches/ubuntu/trusty/gmetrics/trusty

« back to all changes in this revision

Viewing changes to src/main/groovy/org/gmetrics/analyzer/AnalysisContext.groovy

  • Committer: Bazaar Package Importer
  • Author(s): Miguel Landaeta
  • Date: 2010-08-21 17:02:42 UTC
  • Revision ID: james.westby@ubuntu.com-20100821170242-abllnyxg2jaxc43r
Tags: upstream-0.3
ImportĀ upstreamĀ versionĀ 0.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2010 the original author or authors.
 
3
 * 
 
4
 * Licensed under the Apache License, Version 2.0 (the "License");
 
5
 * you may not use this file except in compliance with the License.
 
6
 * You may obtain a copy of the License at
 
7
 * 
 
8
 *      http://www.apache.org/licenses/LICENSE-2.0
 
9
 * 
 
10
 * Unless required by applicable law or agreed to in writing, software
 
11
 * distributed under the License is distributed on an "AS IS" BASIS,
 
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
13
 * See the License for the specific language governing permissions and
 
14
 * limitations under the License.
 
15
 */
 
16
package org.gmetrics.analyzer
 
17
 
 
18
import org.gmetrics.metricset.MetricSet
 
19
 
 
20
/**
 
21
 * Holds information related to the configuration and context for the source code analysis.
 
22
 *
 
23
 * @author Chris Mair
 
24
 * @version $Revision: 92 $ - $Date: 2010-03-05 20:50:48 -0500 (Fri, 05 Mar 2010) $
 
25
 */
 
26
class AnalysisContext {
 
27
 
 
28
    /**
 
29
     * The List of source directories being analyzed. May be null or empty.
 
30
     */
 
31
    List sourceDirectories
 
32
 
 
33
    /**
 
34
     * The MetricSet containing the metrics being applied.
 
35
     */
 
36
    MetricSet metricSet
 
37
}