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

« back to all changes in this revision

Viewing changes to src/main/groovy/org/gmetrics/resultsnode/ResultsNode.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:
13
13
 * See the License for the specific language governing permissions and
14
14
 * limitations under the License.
15
15
 */
16
 
package org.gmetrics.resultsnode;
 
16
package org.gmetrics.resultsnode
17
17
 
18
18
import org.gmetrics.metric.*
19
 
import org.gmetrics.result.MetricResult;
 
19
import org.gmetrics.result.MetricResult
20
20
 
21
21
/**
22
22
 * Represents the interface for a single node in the hierarchical network of results nodes
23
23
 *
24
24
 * @author Chris Mair
25
 
 * @version $Revision: 24 $ - $Date: 2009-12-10 21:17:05 -0500 (Thu, 10 Dec 2009) $
26
25
 */
27
26
interface ResultsNode {
28
27
 
 
28
    String getName()
29
29
    MetricLevel getLevel()
30
30
    boolean containsClassResults()
31
 
    List getMetricResults()
32
 
    Map getChildren()
 
31
    List<MetricResult> getMetricResults()
 
32
    Map<String, ResultsNode> getChildren()
33
33
    MetricResult getMetricResult(Metric metric)
34
34
    
35
35
}