01: /*
02: * @(#)IXmlReportConst.java
03: *
04: * Copyright (C) 2003 Matt Albrecht
05: * groboclown@users.sourceforge.net
06: * http://groboutils.sourceforge.net
07: *
08: * Permission is hereby granted, free of charge, to any person obtaining a
09: * copy of this software and associated documentation files (the "Software"),
10: * to deal in the Software without restriction, including without limitation
11: * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12: * and/or sell copies of the Software, and to permit persons to whom the
13: * Software is furnished to do so, subject to the following conditions:
14: *
15: * The above copyright notice and this permission notice shall be included in
16: * all copies or substantial portions of the Software.
17: *
18: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21: * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23: * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24: * DEALINGS IN THE SOFTWARE.
25: */
26:
27: package net.sourceforge.groboutils.codecoverage.v2.report;
28:
29: /**
30: * Contains constants for generating an XML Coverage report.
31: *
32: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
33: * @version $Date: 2003/12/19 17:07:29 $
34: * @since November 25, 2003
35: */
36: public interface IXmlReportConst {
37: public static final String T_COVERAGEREPORT = "coveragereport";
38: public static final String A_MEASURE = "measure";
39: public static final String A_UNIT = "unit";
40:
41: public static final String T_CLASSCOVERAGE = "classcoverage";
42: public static final String A_CLASSSIGNATURE = "classsignature";
43: public static final String A_CLASSNAME = "classname";
44: public static final String A_SOURCEFILE = "sourcefile";
45: public static final String A_PACKAGE = "package";
46:
47: public static final String T_COVER = "cover";
48: public static final String A_COVERED_DISP = "display-covered";
49: public static final String A_COVERED = "covered";
50: public static final String A_TOTAL_DISP = "display-total";
51: public static final String A_TOTAL = "total";
52: public static final String A_PERCENTCOVERED_DISP = "display-percentcovered";
53: public static final String A_PERCENTCOVERED = "percentcovered";
54: public static final String A_WEIGHTEDPERCENT_DISP = "display-weightedpercent";
55: public static final String A_WEIGHTEDPERCENT = "weightedpercent";
56:
57: public static final String T_METHODCOVERAGE = "methodcoverage";
58: public static final String A_METHODSIGNATURE = "methodsignature";
59: public static final String A_METHODSIGNATURE_REAL = "real-methodsignature";
60:
61: public static final String T_MARK = "mark";
62: // public static final String A_COVERED = "covered";
63: public static final String A_INDEX = "index";
64: public static final String A_TEXT = "text";
65: public static final String A_WEIGHT = "weight";
66: public static final String A_SOURCELINE = "sourceline";
67:
68: public static final String T_PACKAGE = "package";
69: public static final String A_NAME = "name";
70: }
|