Implements the packageprefix nested element used by JBlanketModifierTask.
Required attribute for the 'packageprefix' nested element:
Use this nested element when modifying a JAR file that contains files that are not to be
included in the coverage measurement.
One example of the 'packageprefix' nested element is:
<taskdef name="jblanket" classname="csdl.jblanket.ant.JBlanketModifierTask"/>
<jblanket testgrammar="Test*.class">
<fileset dir="${lib.dir}">
<include name="stack.jar"/>
</fileset>
<packageprefix name="csdl.stack."/>
</jblanket>
where only class files in the 'stack.jar' file that begin with 'csdl.stack.' will be modified.
NOTE: Do not add '*' at the end of the name of the packageprefix element.
author: Joy M. |