summaryrefslogtreecommitdiff
path: root/ant/ant14/com/vladium/emma/emmajavaTask.java
diff options
context:
space:
mode:
Diffstat (limited to 'ant/ant14/com/vladium/emma/emmajavaTask.java')
-rw-r--r--ant/ant14/com/vladium/emma/emmajavaTask.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/ant/ant14/com/vladium/emma/emmajavaTask.java b/ant/ant14/com/vladium/emma/emmajavaTask.java
index cf4339a..929390c 100644
--- a/ant/ant14/com/vladium/emma/emmajavaTask.java
+++ b/ant/ant14/com/vladium/emma/emmajavaTask.java
@@ -19,6 +19,7 @@ import com.vladium.emma.report.ReportCfg;
import com.vladium.emma.report.IReportEnums.DepthAttribute;
import com.vladium.emma.report.IReportEnums.UnitsTypeAttribute;
import com.vladium.emma.report.ReportCfg.Element_HTML;
+import com.vladium.emma.report.ReportCfg.Element_LCOV;
import com.vladium.emma.report.ReportCfg.Element_TXT;
import com.vladium.emma.report.ReportCfg.Element_XML;
@@ -471,6 +472,11 @@ class emmajavaTask extends Java
return m_reportCfg.createTxt ();
}
+ public final Element_LCOV createLcov ()
+ {
+ return m_reportCfg.createLcov ();
+ }
+
public final Element_HTML createHtml ()
{
return m_reportCfg.createHtml ();
@@ -584,4 +590,4 @@ class emmajavaTask extends Java
private Boolean m_outFileMerge;
} // end of class
-// ---------------------------------------------------------------------------- \ No newline at end of file
+// ----------------------------------------------------------------------------