net.sourceforge.cobertura.util |
|
Java Source File Name | Type | Comment |
ArchiveUtil.java | Class | Utility methods for working with archives. |
CommandLineBuilder.java | Class | Helper class for storing long command lines inside temporary file.
Typical usage:
builder = new CommandLineBuilder();
builder.addArg("--someoption");
builder.addArg("optionValue");
...
builder.saveArgs();
doSomething(builder.getCommandLineFile());
builder.dispose();
It will save options in builder.getCommandLineFile() . |
CommandLineBuilderTest.java | Class | |
ConfigurationUtil.java | Class | A Utility Class to load the configuration. |
FileFinder.java | Class | Maps source file names to existing files. |
FileFinderTest.java | Class | |
FileFixture.java | Class | |
FileFlooder.java | Class | I used this class to flood aa directory with files to test a fix for a guy
that had a ton of files mixed with his code. |
FileLocker.java | Class | This class controls access to any file so that multiple JVMs will
not be able to write to the file at the same time.
A file called "filename.lock" is created and Java's FileLock class
is used to lock the file.
The java.nio classes were introduced in Java 1.4, so this class
does a no-op when used with Java 1.3. |
Header.java | Class | |
IOUtil.java | Class | Helper class with useful I/O operations. |
IOUtilTest.java | Class | |
RegexUtil.java | Class | Abstract, not to be instantiated utility class for Regex functions. |
StringUtil.java | Class | Abstract, not to be instantiated utility class for String functions. |
StringUtilTest.java | Class | |