Serialized Form

Class net.sourceforge.cobertura.coveragedata.ClassData extends CoverageDataContainer implements Serializable

serialVersionUID: 5l

Serialized Fields

branches

java.util.Map branches
Each key is a line number in this class, stored as an Integer object. Each value is information about the line, stored as a LineData object.


containsInstrumentationInfo

boolean containsInstrumentationInfo

methodNamesAndDescriptors

java.util.Set methodNamesAndDescriptors

name

java.lang.String name

sourceFileName

java.lang.String sourceFileName


Class net.sourceforge.cobertura.instrument.CoberturaFile extends java.io.File implements Serializable

serialVersionUID: 0l

Serialized Fields

baseDir

java.lang.String baseDir

pathname

java.lang.String pathname


Class net.sourceforge.cobertura.coveragedata.CoverageDataContainer extends java.lang.Object implements Serializable

serialVersionUID: 2l

Serialized Fields

children

java.util.Map children
Each key is the name of a child, usually stored as a String or an Integer object. Each value is information about the child, stored as an object that implements the CoverageData interface.


Class net.sourceforge.cobertura.coveragedata.JumpData extends java.lang.Object implements Serializable

serialVersionUID: 8l

Serialized Fields

conditionNumber

int conditionNumber

trueHits

long trueHits

falseHits

long falseHits


Class net.sourceforge.cobertura.coveragedata.LineData extends java.lang.Object implements Serializable

serialVersionUID: 4l

Serialized Fields

hits

long hits

jumps

java.util.List jumps

switches

java.util.List switches

lineNumber

int lineNumber

methodDescriptor

java.lang.String methodDescriptor

methodName

java.lang.String methodName


Class net.sourceforge.cobertura.coveragedata.PackageData extends CoverageDataContainer implements Serializable

serialVersionUID: 7l

Serialized Fields

name

java.lang.String name


Class net.sourceforge.cobertura.javancss.ParseException extends java.lang.Exception implements Serializable

serialVersionUID: 0l

Serialized Fields

specialConstructor

boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below).


currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

java.lang.String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

java.lang.String eol
The end of line string for this machine.


Class net.sourceforge.cobertura.coveragedata.ProjectData extends CoverageDataContainer implements Serializable

serialVersionUID: 6l

Serialized Fields

classes

java.util.Map classes
This collection is used for quicker access to the list of classes.


Class net.sourceforge.cobertura.coveragedata.SourceFileData extends CoverageDataContainer implements Serializable

serialVersionUID: 3l

Serialized Fields

name

java.lang.String name


Class net.sourceforge.cobertura.reporting.html.SourceFileDataBaseNameComparator extends java.lang.Object implements Serializable

serialVersionUID: 0l


Class net.sourceforge.cobertura.coveragedata.SwitchData extends java.lang.Object implements Serializable

serialVersionUID: 9l

Serialized Fields

switchNumber

int switchNumber

defaultHits

long defaultHits

hits

long[] hits

keys

int[] keys


Class net.sourceforge.cobertura.javancss.Token extends java.lang.Object implements Serializable

serialVersionUID: 0l

Serialized Fields

kind

int kind
An integer that describes the kind of this token. This numbering system is determined by JavaCCParser, and a table of these numbers is stored in the file ...Constants.java.


beginLine

int beginLine
beginLine and beginColumn describe the position of the first character of this token; endLine and endColumn describe the position of the last character of this token.


beginColumn

int beginColumn
beginLine and beginColumn describe the position of the first character of this token; endLine and endColumn describe the position of the last character of this token.


endLine

int endLine
beginLine and beginColumn describe the position of the first character of this token; endLine and endColumn describe the position of the last character of this token.


endColumn

int endColumn
beginLine and beginColumn describe the position of the first character of this token; endLine and endColumn describe the position of the last character of this token.


image

java.lang.String image
The string image of the token.


next

Token next
A reference to the next regular (non-special) token from the input stream. If this is the last token from the input stream, or if the token manager has not read tokens beyond this one, this field is set to null. This is true only if this token is also a regular token. Otherwise, see below for a description of the contents of this field.


specialToken

Token specialToken
This field is used to access special tokens that occur prior to this token, but after the immediately preceding regular (non-special) token. If there are no such special tokens, this field is set to null. When there are more than one such special token, this field refers to the last of these special tokens, which in turn refers to the next previous special token through its specialToken field, and so on until the first special token (whose specialToken field is null). The next fields of special tokens refer to other special tokens that immediately follow it (without an intervening regular token). If there is no such token, this field is null.


Class net.sourceforge.cobertura.javancss.TokenMgrError extends java.lang.Error implements Serializable

serialVersionUID: 0l

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.