summaryrefslogtreecommitdiff
path: root/ant/ant14/com/vladium/emma/report/ReportCfg.java
diff options
context:
space:
mode:
Diffstat (limited to 'ant/ant14/com/vladium/emma/report/ReportCfg.java')
-rw-r--r--ant/ant14/com/vladium/emma/report/ReportCfg.java26
1 files changed, 25 insertions, 1 deletions
diff --git a/ant/ant14/com/vladium/emma/report/ReportCfg.java b/ant/ant14/com/vladium/emma/report/ReportCfg.java
index 71a01b4..2d8b73f 100644
--- a/ant/ant14/com/vladium/emma/report/ReportCfg.java
+++ b/ant/ant14/com/vladium/emma/report/ReportCfg.java
@@ -195,6 +195,24 @@ class ReportCfg implements IReportProperties
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ public static class Element_LCOV extends Element
+ {
+ protected final String getType ()
+ {
+ return TYPE;
+ }
+
+ Element_LCOV (final Task task, final IProperties settings)
+ {
+ super (task, settings);
+ }
+
+ static final String TYPE = "lcov";
+
+ } // end of nested class
+
+ // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
public static class Element_XML extends Element
{
protected final String getType ()
@@ -308,6 +326,12 @@ class ReportCfg implements IReportProperties
new Element_TXT (m_task, m_settings));
}
+ public Element_LCOV createLcov ()
+ {
+ return (Element_LCOV) addCfgElement (Element_LCOV.TYPE,
+ new Element_LCOV (m_task, m_settings));
+ }
+
public Element_HTML createHtml ()
{
return (Element_HTML) addCfgElement (Element_HTML.TYPE,
@@ -421,4 +445,4 @@ class ReportCfg implements IReportProperties
private transient boolean m_processed;
} // end of class
-// ---------------------------------------------------------------------------- \ No newline at end of file
+// ----------------------------------------------------------------------------