Provides a wrapper for the 'MethodSet' element in the aggregate XML file. An instance of a
MethodSetElement represents elements in a MethodSet.
An example of a 'MethodSet' as a MethodSetElement with no methods:
<MethodSet class="String" package="java.lang" tested="0" untested="0" oneline="0"
constructor="0" excludedindividual="0" timestamp=""/>
An example of a 'MethodSet' as a MethodSetElement with methods:
<MethodSet class="String" package="java.lang" tested="1" untested="0" oneline="0"
constructor="0" timestamp="">
<tested>
<Method name="indexOf" package="java.lang.String">
<Parameter type="java.lang.String"/>
<Parameter type="int"/>
</Method>
</tested>
<untested/>
<oneline/>
<constructor/>
<ecludedindividual/>
</MethodSet>
Note that the excluded individual methods take priority over all the other
categories of methods. I.e., if a one-line method was individually excluded by the application,
then it is considered to be an individually excluded methods instead of a one-line method.
author: Joy M. Agustin version: $Id: MethodSetElement.java,v 1.2 2004/11/07 08:53:26 timshadel Exp $ |