| java.lang.Object csdl.jblanket.JBlanket
All known Subclasses: csdl.jblanket.modifier.Modifier, csdl.jblanket.report.JBlanketReport,
JBlanket | abstract public class JBlanket (Code) | | Provides description for two main classes in the system: Modifier and JBlanketReport.
author: Joy M. Agustin version: $Id: JBlanket.java,v 1.3 2005/02/21 20:28:42 timshadel Exp $ |
Constructor Summary | |
public | JBlanket() Constructs a new JBlanket instance. |
Method Summary | |
abstract protected void | storeMethods(MethodSet methodSet, File file) Stores all the method information from methodSet to file fileName . |
constructorSet | protected MethodSet constructorSet(Code) | | Container for constructors
|
excludeConstructors | protected boolean excludeConstructors(Code) | | Describes if constructors should be excluded from the coverage measurement
|
excludeIndividualMethods | protected boolean excludeIndividualMethods(Code) | | Describes if a file should be used to exclude methods from the coverage measurement
|
excludeOneLineMethods | protected boolean excludeOneLineMethods(Code) | | Describes if one-line methods should be excluded from the coverage measurement
|
jblanketDir | protected static String jblanketDir(Code) | | Output directory for JBlanket
|
oneLineSet | protected MethodSet oneLineSet(Code) | | Container for one-line methods
|
untestableSet | protected MethodSet untestableSet(Code) | | Container for untestable methods
|
verbose | protected boolean verbose(Code) | | Describes if JBlanket should execute in verbose mode
|
JBlanket | public JBlanket()(Code) | | Constructs a new JBlanket instance. Sets jblanketDir from the system property.
If it does not exist, the JBlanket output directory is created
(see MethodCollector.getJBlanketDir method).
|
storeMethods | abstract protected void storeMethods(MethodSet methodSet, File file) throws IOException(Code) | | Stores all the method information from methodSet to file fileName .
Parameters: methodSet - the collection of method information to store. Parameters: file - the output file. throws: IOException - if cannot write to fileName . |
|
|